PDA

View Full Version : سوال: تغییر محتویات یک فایل



mikrob
دوشنبه 19 اسفند 1392, 09:51 صبح
سلام دوستان عزیز
می خواستم بدونم چطور میشه محتویات یک فایل TXT رو تغییر داد و بعدشم ذخیرش کرد؟
( مثلا توی فایل txt هرچی اسم ali هست رو به mohammad تغییر بده)
ممنون میشم راهنماییم کنید.

mamadcity
دوشنبه 19 اسفند 1392, 11:39 صبح
$msgid = $_GET['msgid'];

$oldMessage = "";

$deletedFormat = "";

//read the entire string
$str=file_get_contents('msghistory.txt');

//replace something in the file string - this is a VERY simple example

$str=str_replace("$oldMessage", "$deletedFormat",$str);

file_put_contents('msghistory', $str);