这个问题已经有了答案:
something wrong with replace string?1回答
好的,我有我的PHP代码:
<?php
$str="hwids.html"
str_replace($_GET['hwid']."<br />","",$str);
?>
当我在运行php脚本后转到html脚本时,文本仍然存在,我告诉它删除
有人可以帮忙吗?
答案 0 :(得分:2)
忘了分号
$str="hwids.html";
但是您的HTML脚本不应该更改,因为您只是在字符串"hwids.html"
在您的情况下纠正解决方案:
$file = 'hwids.html';
file_put_contents($file,str_replace($_GET['hwid']."<br />",'',file_get_contents($file)));
答案 1 :(得分:0)
$str="hwids.html
这需要成为
$str="hwids.html;
不要忘记分号。
您还有其他一些语法问题。你想收到什么输出?这应该有助于澄清你的错误。