14 lines
349 B
PHP
14 lines
349 B
PHP
<?php
|
|
$content = file_get_contents('stock.php');
|
|
$search = "echo \"\";";
|
|
$replace = 'echo "\xEF\xBB\xBF";';
|
|
|
|
if (strpos($content, $search) !== false) {
|
|
$content = str_replace($search, $replace, $content);
|
|
file_put_contents('stock.php', $content);
|
|
echo "Replaced successfully.\n";
|
|
} else {
|
|
echo "Search string not found.\n";
|
|
}
|
|
|