最贊回答 / 冷月蕭鋒
if (is_file(ROOT_PATH . '.env')) {??? $env = parse_ini_file(ROOT_PATH . '.env', true);??? foreach ($env as $key => $val) {??????? $name = ENV_PREFIX . strtoupper($key);??????? if (is_array($val)) {??????????? foreach ($val as $k => $v) {????????????...
2019-01-22
最贊回答 / 慕碼人1187127
搞了大半天終于知道了是哪兒的問題,大家注意在創(chuàng)建控制器文件的時候一定要注意文件名的大小寫,我這兒是admin/controller/index.php,正確應該是Index.php我哭了,你呢
2019-01-11
最新回答 / qq_慕絲7416299
localhost:8088/thinkphp5/public/index/Index/index? ? ? ? ? ? ?8088是我設置的端口號
2018-12-24
最新回答 / 鄭耳木子
namespace app\index\controller;use app\common\controller\User as commonUser;class User extends commonUser{//? ? public function showName($name = '')//? ? {//? ? ? ? return parent::showName('may'); // TODO: Change the autogenerated stub//? ? }? ? ? public ...
2018-12-15