4 回答

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊
你嘗試在文件中加入這行代碼composer.json
,然后composer dumpautoload
在命令行中執(zhí)行命令

TA貢獻(xiàn)1744條經(jīng)驗(yàn) 獲得超4個(gè)贊
在 composer.json 文件中,
"autoload": {
"psr-4": {
"App\\": "app/",
"config\\models\\": "config/models"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
在那之后composer dump-autoload。

TA貢獻(xiàn)1840條經(jīng)驗(yàn) 獲得超5個(gè)贊
要使提供的示例代碼正常工作,您需要使用require_once
<?php
require_once('models/myContext.php');
use app\config\models\myContext as context;
$test = new context();
- 4 回答
- 0 關(guān)注
- 195 瀏覽
添加回答
舉報(bào)