单选题】$fruit="apple"; echo 'this is an $fruit.'的输出结果是()
A. this is an $fruit.
B. this is an $apple.
C. this is an apple.
D. this is an .
查看答案
【单选题】变量a的值为true,则a的数据类型是()
A. resource
B. bool
【单选题】$str="123avfdss234" $a=(int)$str,则变量a的类型是()
A. 字符串类型
B. 整型
C. 不能强制转换
定义数组$arr=array(1,2,3,4,5,6,7,8,9),执行语句echo $arr[2],输出结果是什么
定义数组$arr=array('animal'=>'dog','color'=>'red','number'=>'12','hello'=>'hahaha','age'=>'20'),执行语句echo $arr['number'],输出结果是什么echo $arr['color'],输出结果是什么