php,应该没人知道吗

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