php 如何设置超全局变量
3 回答
繁花如伊
TA贡献2012条经验 获得超12个赞
进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择你需要的模块,比如curl模块:cd curl执行phpize生成编译文件!
phpize在PHP安装目录的bin目录/usr/local/php5/bin/phpize运行时,
可能会报错:Cannot find autoconf. Please check your autoconf installation andthe $PHP_AUTOCONFenvironment variable is set correctly and then rerun thisscript.,需要安装autoconf:yum install autoconf(RedHat或者CentOS)、apt-get installautoconf(Ubuntu Linux)!
执行/usr/local/php5/bin/php -v这个命令时,php会去检查配置文件是否正确,
如果有配置错误,这里会报错,可以根据错误信息去排查!
婷婷同学_
TA贡献1844条经验 获得超8个赞
global $happy;
定义a为全局变量
例如:
$happy="haha";
printf_1;
function print_1($x){
global $happy;
echo $x;
}
如果定义成功就会打印$happy中的字符串haha
- 3 回答
- 0 关注
- 581 浏览
添加回答
举报
0/150
提交
取消