下面给大家介绍关于valet是否有适合thinkphp5的驱动的问题,希望对需要的朋友有所帮助!
valet 有没有适合thinkphp5的驱动?
觉得valet的思路很好所以采用了这个来做环境。
公司里面用thinkphp的人比较多。所以要使用thinkphp。(而且我是弄前端的,后端用啥也不会特别在意)
https://github.com/curder/blog/blob/master/tools/valet_support_thinkphp.md
这是thinkphp3-valet的。
自己简单写了一个现在试的可以用。
<?phpclassThinkPHP5ValetDriverextendsValetDriver{/***Determineifthedriverservestherequest.**@paramstring$sitePath*@paramstring$siteName*@paramstring$uri*@returnbool*/publicfunctionserves($sitePath,$siteName,$uri){returntrue;}/***Determineiftheincomingrequestisforastaticfile.**@paramstring$sitePath*@paramstring$siteName*@paramstring$uri*@returnstring|false*/publicfunctionisStaticFile($sitePath,$siteName,$uri){if(file_exists($staticFilePath=$sitePath.$uri)){return$staticFilePath;}returnfalse;}/***Getthefullyresolvedpathtotheapplication'sfrontcontroller.**@paramstring$sitePath*@paramstring$siteName*@paramstring$uri*@returnstring*/publicfunctionfrontControllerPath($sitePath,$siteName,$uri){$_SERVER['SCRIPT_FILENAME']='index.php';$_SERVER['SCRIPT_NAME']='';$_SERVER['PHP_SELF']='/index.php';$_SERVER['PATH_INFO']=$uri;return$sitePath.'/index.php';}}
产品猿社区致力收录更多优质的商业产品,给服务商以及软件采购客户提供更多优质的软件产品,帮助开发者变现来实现多方共赢;
日常运营的过程中我们难免会遇到各种版权纠纷等问题,如果您在社区内发现有您的产品未经您授权而被用户提供下载或使用,您可按照我们投诉流程处理,点我投诉;
本文来自用户发布投稿,不代表产品猿立场 ;若对此文有疑问或内容有严重错误,可联系平台客服反馈;
部分产品是用户投稿,可能本文没有提供官方下下载地址或教程,若您看到的内容没有下载入口,您可以在我们产品园商城搜索看开发者是否有发布商品;若您是开发者,也诚邀您入驻商城平台发布的产品,地址:点我进入;
如若转载,请注明出处:https://www.chanpinyuan.cn/43119.html;