1、
$a=$b=$c=0;
$a=$b && $c;
运行以上代码后$a $b $c 分别是?
答:$b、$c是0, $a变成了false。2、
请用php的heredoc语法格式输出:hello world!3、
打开php.ini中的Safe_mode,会影响哪些函数?第1个为什么会有那样的结果?
第2个中的heredoc是什么?
第3个中的safe_mode是做什么用的?谢谢!