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.
DBにPHPスニペットがあり、クエリを介してフェッチします。その後、str_replaceを適用して、特定の領域を置き換えます。
str_replace("****",$res->id,$my_file);
しかし、それは文字列を変更していません。シーンをデバッグする方法がわかりません
返された文字列を変数に割り当てる必要があります。PHPの*_replace関数はいずれも、元の文字列をインプレースで変更しません。
*_replace
$my_file = str_replace("****", $res->id, $my_file);