php,应该没人知道吗
- $A="I am a college student";
$B=strpos($A,"s");
substr($A,$B,7)的值是( )。 - $A=array("Hello","world");
$B=implode($A);
$C=strcmp($B,"hello world");
$B的值是( ),$C的值是( )。 - $A="This is a book";
$B=array("c","o");
$C=array("e");
str_replace($B, $C, $A)的结果是( )。 - 已知字符“A”的ASCII值是65,
$A=ord("A")+2; $B=ord("A")+32;
$C=$AI$B;则chr($C)的值是( )。 - $A="A heaven in a wild flower";
$B="A heaven is in your heart";
strncmp($A,$B,9)的结果是( )。