• 2022-05-26
    下面语句的输出结果( )。<?php$str1="I am student ";$str2="Lily";$str3=str_replace("student",$str2,$str1)echo $str3;?>
    A: I am student
    B: I am Lily
    C: Lily am student
    D: I am student Lily