gpt4 book ai didi

laravel - 如何在自己的 laravel 包中添加助手? (调用未定义的函数)

转载 作者:行者123 更新时间:2023-12-04 19:27:37 25 4
gpt4 key购买 nike

在我的 composer.json 我写过:

"autoload": {
"psr-4": {
"Pmochine\\MyOwnPackage\\": "src/"
},
"files": [
"src/helpers.php"
]
},

但不知何故,即使在 composer dump-autoload 之后,函数也没有加载。我得到“调用未定义的函数”。为了创建包,我使用了 package generator .也许它与在供应商文件夹中创建一个符号链接(symbolic link)有关?

我写过的内部助手
<?php

if (! function_exists('myowntest')) {

function myowntest()
{
return 'test';
}
}

最佳答案

在包服务提供者中,尝试添加:

// if 'src/helpers.php' does not work, try with 'helpers.php'
if (file_exists($file = app_path('src/helpers.php'))) {
require $file;
}

关于laravel - 如何在自己的 laravel 包中添加助手? (调用未定义的函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51322847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com