Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在数据库中有一个 PHP 片段,我通过查询获取,之后我在其上应用 str_replace 以替换特定区域。
str_replace("****",$res->id,$my_file);
但它并没有改变字符串。我不知道如何调试场景
您需要将返回的字符串分配给您的变量。PHP 的所有*_replace函数都没有就地修改原始字符串。
*_replace
$my_file = str_replace("****", $res->id, $my_file);