次の thinkphp フレームワーク チュートリアル コラムでは、valet に thinkphp5 に適したドライバーがあるかどうかについて紹介します。
valet thinkphp5に適したドライバはありますか?
valetさんのアイデアがとても良いと思い、環境として採用させていただきました。
社内には thinkphp を使用している人がたくさんいます。そこでthinkphpを使います。 (そして、私はフロントエンドで作業しているので、バックエンドに何を使用するかは特に気にしません)
https://github.com/curder/blog/blob/master/ tools/valet_support_thinkphp.md
これは thinkphp3-valet です。
##↓↓↓↓
今すぐ試せるものを書いただけです。
<?php class ThinkPHP5ValetDriver extends ValetDriver { /** * Determine if the driver serves the request. * * @param string $sitePath * @param string $siteName * @param string $uri * @return bool */ public function serves($sitePath, $siteName, $uri) { return true; } /** * Determine if the incoming request is for a static file. * * @param string $sitePath * @param string $siteName * @param string $uri * @return string|false */ public function isStaticFile($sitePath, $siteName, $uri) { if (file_exists($staticFilePath = $sitePath.$uri)) { return $staticFilePath; } return false; } /** * Get the fully resolved path to the application's front controller. * * @param string $sitePath * @param string $siteName * @param string $uri * @return string */ public function frontControllerPath($sitePath, $siteName, $uri) { $_SERVER['SCRIPT_FILENAME'] = 'index.php'; $_SERVER['SCRIPT_NAME'] = ''; $_SERVER['PHP_SELF'] = '/index.php'; $_SERVER['PATH_INFO'] = $uri; return $sitePath.'/index.php'; } }
以上がバレーにTP5に適したドライバーがあるかどうかについて話しましょう?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。