-
1error_reporting(8)作用等同于:
-
2parse_url( )函数的功能是:
-
3下列代码的输出是? <? define("x","5"); $x=x+10; echo x; ?>
-
4简述call_user_func的功能
解析:调用函数或者类里面的函数,返回第一个参数的值。类似的功能call_user_func_array
-
5以下代码的输出为? <?php $arr = array(5 => 1, 12 => 2); $arr[] = 56; $arr["x"] = 42; un
-
6cookie的值存储在( )
-
7使用一下哪个函数可以返回由类的默认属性组成的数组:
-
8PHP变量 $hello 的值设为"HELLO WORLD",下面哪个语句返回"Hello World"?
-
9在PHP5中,新增加了哪些函数,带索引检查计算数组的交集?
-
10写出下列程序的输出结果: class a{ protected $c; public function a(){ $this ->c=10; } } class b extends
解析:10
点击加载更多评论>>