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
最新回答 / PcWqj
array_merge() : 把两个数组合并为一个数组,注意:如果两个或更多个数组元素有相同的键名,则最后的元素会覆盖其他元素
<?php $a1=array("a"=>"red","b"=>"green"); $a2=array("c"=>"blue","b"=>"yellow"); print_r(array_merge($a1,$a2)); ?><...code...>
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