如:$str = '欢迎注册xxx,你的注册码是:{$code}';调用的时候,先生成$code = 123456;如何将$str里的$code替换为123456,结果是:欢迎注册xxx,你的注册码是:123456
$str = '欢迎注册xxx,你的注册码是:{$code}';
$code = 123456;
$str
$code
123456
欢迎注册xxx,你的注册码是:123456
解决方案1:
$code = 123456; $str = '欢迎注册xxx,你的注册码是:{$code}'; eval("$str = \"$str\";");
有没有其他优雅的方案?
小伙看你根骨奇佳,潜力无限,来学PHP伐。
str_replace()
为什么需要eval , 根本不需要的
<?php $name = 'Panda'; $code = 6379; printf("欢迎注册%s,你的注册码是:%d",$name,$code); //欢迎注册Panda,你的验证码是6379 ?>
printf()函数详见http://php.net/sprintf
str_replace()
为什么需要eval , 根本不需要的
printf()函数详见http://php.net/sprintf