php – Composer:指定autoload_files需要订单

前端之家收集整理的这篇文章主要介绍了php – Composer:指定autoload_files需要订单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Laravel的辅助函数具有if(!function_exists(‘xx’))保护.

我可以指定autoload_files的顺序,并且在helpers.PHP之前让Kint.class.PHP需要吗?

return array( 
    $vendorDir . '/laravel/framework/src/Illuminate/Support/helpers.PHP',$vendorDir . '/raveren/kint/Kint.class.PHP',);
@H_301_8@ 我通过几种方式对此进行了测试,通过在自动加载中添加我的助手以及我们首先加载的Laravel助手.

所以我的解决方案是在供应商自动加载之前包含您自己的帮助程序功能.

我在公共文件夹上的index.PHP文件中完成了它

//my extra line
require_once __DIR__.'/../app/helpers.PHP';

//this is laravel original code
//I make sure to include before this line

require __DIR__.'/../vendor/autoload.PHP';

在你的帮助文件中,你可以定义你的帮助函数

function camel_case($value)
 {
     return 'MY_OWN_CAMEL_CASE';
 }
原文链接:https://www.f2er.com/php/137116.html

猜你在找的PHP相关文章