很多人修改的应该是php下面的php.ini,要注意也把服务器(apache\bin)下面的php.ini里面的variables_order = "EGPCS",修改一下哦,这样就可以了!
2017-11-03
没显示出来的,打开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就可以了。
; 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就可以了。
2017-11-03
配置database 返回的为数组形式 不是PHP_DATABASE_HOSTNAME=root,而是
["PHP_DATABASE"] => array(3) {
["postname"] => string(9) "loclahost"
["usname"] => string(4) "root"
["password"] => string(6) "123456"
}
格式,应该是我的版本更新了
["PHP_DATABASE"] => array(3) {
["postname"] => string(9) "loclahost"
["usname"] => string(4) "root"
["password"] => string(6) "123456"
}
格式,应该是我的版本更新了
2017-11-02
用phpstudy中的其他选项菜单中的PHP Composer 安装不了,下了个composer.phar(下的真慢,还老断线)自己手动搭建composer,才成功;
2017-10-29