を返す別のファイルに渡す:スリムルート私はこのような<strong>フォルダ構造</strong>を持っている価値
|/app
|-/db/users.php
|/Slim
|/vendor
|index.php
とindex.php
内側:
require 'vendor/autoload.php';
$app = new Slim\App();
$app->get('/{action}/{type}/{props}', function ($request, $response, $args) {
$jenis_user = strtolower($args['type']);
$aksi = strtolower($args['action']);
$prop = strtolower($args['props']);
$target_loc = "";
if($aksi == 'get'){
// the parameter is using the following format
// action=XX&type=YY&props=ZZ;
$target_loc = "./app/db/users.php?action=". $aksi . "&type=" . $jenis_user . "&props=" . $prop ;
// #Tips :: data extracted are in Array Format ::
$file = file_get_contents($target_loc);
$response->write(json_encode($file));
}
return $response;
});
私の目的は私場合に返される整数値を取得することですブラウザに次のパスを入力します。
http://api.myweb.com/get/seller/totalNumber
しかし、私は、パラメータを渡すのルーティングを書いた方法が間違っているようだ:?私は
警告の警告だ:のfile_get_contents(./アプリ/ DB/users.phpアクションを= &タイプ=売り手&小道具を取得=総数):ストリームを開くことに失敗しました
どうすれば修正できますか?
あなたは 'app/db/users.php'の内容を私達に与える必要があります...これはひどいデザインです。あなたの依存関係はクラスでなければなりません。クラスからの出力を求めて、それをjsonifyすることができます。 – geggleto