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