Files
project-webgis/webgisspbu-parsiltanah/fix.php
T
2026-06-11 10:16:53 +07:00

7 lines
172 B
PHP

<?php
$f = 'C:\laragon\www\webgis\webgisspbu-parsiltanah\index.php';
$c = file_get_contents($f);
$c = str_replace('\${', '${', $c);
file_put_contents($f, $c);
echo "Done";