• 2021-04-14 问题

    以下程序横线处应该使用的函数为( )。 <?php $email='gaofeng@lampbrother.com.cn'; $str = ____($email, '@'); $info = ____('.',$str); ____($info); ?> 输出结果为:Array ([0] => @lampbrother [1]=>com[2]=>cn)

    以下程序横线处应该使用的函数为( )。 <?php $email='gaofeng@lampbrother.com.cn'; $str = ____($email, '@'); $info = ____('.',$str); ____($info); ?> 输出结果为:Array ([0] => @lampbrother [1]=>com[2]=>cn)

  • 2022-06-08 问题

    <?php $email='gaofeng@lampbrother.com.cn'; $str = ____($email, '@'); $info = ____('.',$str); ____($info); ?>输出结果为:Array (&#91;0&#93; => @lampbrother &#91;1&#93;=>com&#91;2&#93;=>cn)以上程序横线处应该使用的函数为( )。 A: strchr, split, var_dump B: strstr, explode, print_r C: strstr,explode, echo D: strchr, split, var,_dump

    <?php $email='gaofeng@lampbrother.com.cn'; $str = ____($email, '@'); $info = ____('.',$str); ____($info); ?>输出结果为:Array (&#91;0&#93; => @lampbrother &#91;1&#93;=>com&#91;2&#93;=>cn)以上程序横线处应该使用的函数为( )。 A: strchr, split, var_dump B: strstr, explode, print_r C: strstr,explode, echo D: strchr, split, var,_dump

  • 2022-06-08 问题

    以下程序横线处应该使用的函数为( )。<;?php$email='gaofeng@lampbrother.com.cn';$str = ____($email, '@');$info = ____('.',$str);____($info);?>;输出结果为:Array (&#91;0&#93; =>; @lampbrother &#91;1&#93;=>;com&#91;2&#93;=>;cn) A: strstr, explode, print_r B: strchr, split, var_dump C: strstr,explode, echo D: strchr, split, var,_dump

    以下程序横线处应该使用的函数为( )。<;?php$email='gaofeng@lampbrother.com.cn';$str = ____($email, '@');$info = ____('.',$str);____($info);?>;输出结果为:Array (&#91;0&#93; =>; @lampbrother &#91;1&#93;=>;com&#91;2&#93;=>;cn) A: strstr, explode, print_r B: strchr, split, var_dump C: strstr,explode, echo D: strchr, split, var,_dump

  • 2021-04-14 问题

    【单选题】以下代码返回的结果为()。 <? $str = "LAMP"; $str1 = "LAMPBrother"; $strc = strcmp($str, $str1); switch ($strc){ case 1: echo "str > str1"; break; case -1: echo "str < str1"; break; case 0: echo "str = str1"; break; default: echo "str <> str1"; } ?> (5.0分) A. true B. str <> str1 C. 程序运行出错 D. 根据版本来定

    【单选题】以下代码返回的结果为()。 <? $str = "LAMP"; $str1 = "LAMPBrother"; $strc = strcmp($str, $str1); switch ($strc){ case 1: echo "str > str1"; break; case -1: echo "str < str1"; break; case 0: echo "str = str1"; break; default: echo "str <> str1"; } ?> (5.0分) A. true B. str <> str1 C. 程序运行出错 D. 根据版本来定

  • 1