다음 thinkphp프레임워크 튜토리얼 칼럼에서는 Valet에 thinkphp5에 적합한 드라이버가 있는지에 대한 문제를 소개하겠습니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!
valet thinkphp5에 맞는 드라이버가 있나요?
발렛님의 아이디어가 너무 좋은 것 같아서 이걸 환경으로 채택했습니다.
회사에는 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'; } }
추천: "최신 10개 thinkphp 비디오 튜토리얼"
위 내용은 발렛에 TP5에 적합한 운전자가 있는지 이야기해 볼까요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!