Я хочу заменить адрес сервера внутри XML-файла. Размещенный заполнитель %scr_path%
на линии.
<property id="urlGenerateImage">%scr_path%/imgcap.php</property>
Используя следующий код
$path=$wsurl."core/contents/tests";
//read the entire string
$str=implode("\n",file('../includes/ckeditor/plugins/fmath_formula/dialogs/configMathMLEditor.xml'));
$fp=fopen('../includes/ckeditor/plugins/fmath_formula/dialogs/configMathMLEditor.xml','w');
//replace something in the file string
$str=str_replace('%scr_path%',$path,$str);
//now, TOTALLY rewrite the file
fwrite($fp,$str,strlen($str));
Получение кучу ошибок о неправильном пути к файлу. Проверил дважды путь. Что не так?