Thinkphp5.0.24新建admin/controller/User.php后可以访问这个控制器可以访问localhost/User/index
2019-05-01
use think\Config;为什么不能用,
the import think\Config cannnot be resolved
类在think的libary下面能够找到。
helper.php中也有,
但是这句就是报错,
版本是5.0.24
think输入提示中只有composer,任意其他类都有错。
the import think\Config cannnot be resolved
类在think的libary下面能够找到。
helper.php中也有,
但是这句就是报错,
版本是5.0.24
think输入提示中只有composer,任意其他类都有错。
2019-04-24
'PHP_DATABASE' =>
array (size=3)
'hostname' => string 'localhost' (length=9)
'username' => string 'root' (length=4)
'password' => string 'root' (length=4)
我输出这样正常么
array (size=3)
'hostname' => string 'localhost' (length=9)
'username' => string 'root' (length=4)
'password' => string 'root' (length=4)
我输出这样正常么
2019-04-23
没显示系统环境变量的
打开php.ini,找到这样几行代码:
; variables_order
;Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS"
然后,将;Default Value: "EGPCS"前面的分号去掉,整个配置变成:
; variables_order
Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS"
然后重启Apache就可以了。
打开php.ini,找到这样几行代码:
; variables_order
;Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS"
然后,将;Default Value: "EGPCS"前面的分号去掉,整个配置变成:
; variables_order
Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS"
然后重启Apache就可以了。
2019-03-31
没显示.env加载文件内容的
修改thinkphp框架下的 base.php
在 putenv("$name=$val"); 代码下边
加上
$_ENV[$name] = $val;
$_SERVER[$name] = $val;
这2句话即可
修改thinkphp框架下的 base.php
在 putenv("$name=$val"); 代码下边
加上
$_ENV[$name] = $val;
$_SERVER[$name] = $val;
这2句话即可
2019-03-31
TP5.1
$data = ['name' => 'thinkphp', 'status' => '1'];
return json($data);
$data = ['name' => 'thinkphp', 'status' => '1'];
return json($data);