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',);
我通过几种方式对此进行了测试,通过在自动加载中添加我的助手以及我们首先加载的Laravel助手.
原文链接:https://www.f2er.com/php/137116.html所以我的解决方案是在供应商自动加载之前包含您自己的帮助程序功能.
//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'; }