以下哪些函数能把字符串里存储的二进制数据转化成十六进制?()
A. encode_hex()
B. pack()
C. hex2bin()
D. bin2hex()
查看答案
以下哪些方法能取出$a($a='abcdef')中的第一个字母?( )
A. substr($a,0,1)
B. $a{0}
C. strstr($a,0,1)
D. stristr($a,0,1)
以下程序横线处应该使用的函数为:()输出结果为:Array ([0] => @thizlinux [1]=>com[2]=>cn)
A. strchr, split, var_dump
B. strstr, explode, print_r
C. strstr,explode, echo
D. strchr, split, var,_dump
以下关于字符串的说法正确的是( )
A. echo “hello\nworld”;在页面可以实现换行
B. echo ‘helloworld{$a}’;可以解析变量a的值
C. $str=<< D. print $a,”hello”;可以输出数据不报错
下面哪一个函数是将字符串转为小写的函数?( )
A. Upper
B. strtoupper
C. lower
D. strtolower