如何修复php中的str_replace删除所有内容?

时间:2019-06-04 17:09:20

标签: javascript php str-replace

我有一个javascript文件调用的php文件,理论上它应该更新文本文件上的一些数据,但是它将替换数据以不进行任何更新。

我试图隔离它,而不是每秒运行很多次,而是按按键逐个运行它。

$.ajax({url : "remove.php",type : "POST",data : { supp: "["+name+"]"+"["+pgx+"]["+pgy+"]", rep:"["+name+"]["+gy+"]["+gx+"]"},dataType: "text"});
pgx=gx
pgy=gy
<?php
$sc = (string)$_POST["supp"];
$re = (string)$_POST["rep"];
$text=file_get_contents ("players.txt");
$result=str_replace($sc,$re,$text);
file_put_contents ("players.txt",$result);
?>

结果应保持不变,直到我移动然后更新坐标[pseudo] [x] [y] 而是将以前的数据替换为空

0 个答案:

没有答案