ציטוט:
נכתב במקור על ידי בניה
ב"ה
PHP קוד:
<?php
var $file_path='';
var $find='';
var $replace_with='';
$file=file_get_contents($file_path);
$file=str_replace($find,$replace_with,$file);
$fp=fopen($file_path,"w");
fwrite($fp,$file);
fclose($fp);
?>
|
תגיד...למה עשיתה VAR לפני הגדרת המשתנים?