我有一个变量

$学校名称;

它从服务器获取许多数据,我想将 逗号 下划线 破折号 替换为变量值并回显
问题是我无法替换它
请支持修复错误
谢谢

最佳答案

使用 str_replace 函数。

<?php
$result = "GOOD_AFTERNOON-TODAY,FINE";
$shool_name = "test";

$result = str_replace(array(',','-','_'), $shool_name, $result );
echo $result;
?>

输出
GOODtestAFTERNOONtestTODAYtestFINE

checkin 编辑器:Click Here

对于 AND 替换为 &。
<?php
$result = "Raichand_International..and..school";
$shool_name = "&";

$result = str_replace(array('and'), $shool_name, $result );
echo $result;
?>

输出
Raich&_International..&..school

关于php从变量值中替换特殊字符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36645559/

10-16 14:53