php面试题集-测试题

来源:互联网 发布:泡沫洗面奶淘宝 编辑:程序博客网 时间:2024/06/04 00:27
测试题


$a = 'hello';$b = &$a;unset($b);$b = 'world';what is $a? // hello

$a = 1;$x = &$a;$b = $a++;what is $b? // 1

var $array = array();$x = empty($array);what is $x? true or false // true

$b = 201;$c = 40;$a = $b>$c ? 4 : 5;what is $a? // 4

$str = 'cd';$$str = 'hotdog';$$str.= 'ok';what is $cd? //hotdogok


$a = count("www.hao123.com");echo $a; what's $a?  // 1





0 0