Em có 1 doạn code php như sau
Mình muốn xóa bỏ phần footer ghi thông tin, nhưng cứ sửa dù chỉ 1 ký tự thì trang web không thể hiện thị được.
Ai có thể hướng dẫn em sửa cái này không
Xin cảm ơn nhiều.
Code:
<?
class skin_layout
{
//------------------------------------------------------------
function get_site_domain($url)
{
$result=$url;
$result=str_replace('http://','',$result);
list($result)=explode('/',$result);
$result=str_replace('www.','',$result);
return $result;
}
//------------------------------------------------------------
function get_site_url()
{
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80")
{
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else
{
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
$pageURL=str_replace('/install/index.php','',$pageURL);
return $pageURL;
}
//----------------------------------------------------------
function match_data($input)
{
$result=$input;
global $DATA_FOLDER;
$filename=$DATA_FOLDER.'/valid_data.lst';
$hash_key="aHR0cDovL3d3dy52aWV0c29sLmNvbS9yZW1vdGUvZG9tdmVyaWZ5LnBocD9xPQ==";
$val_key="vL3d3dy52aWV0c29sLmNvbS9yZW1vdGUvZG9tdm";
$dom=base64_encode(strtolower(get_site_domain(get_site_url())));
$cur_date=date("Ymd");
ob_start();
$stat_data=trim(file_get_contents($filename));
ob_end_clean();
if ($stat_data!=$cur_date)
{
ob_start();
$output=file(base64_decode($hash_key).$dom);
ob_end_clean();
if (strlen(trim($output[0]))>0 && trim($output[0])!=$dom)
{
$result=str_replace($hash_key,$val_key,$inputs);
}
ob_start();
$fp=fopen($filename,"w");
fwrite($fp,$cur_date);
fclose($fp);
ob_end_clean();
}
return $result;
}
//----------------------------------------------------------
//----------------------------------------------------------
function content()
{
$result='';
global $SITE_NAME;
global $SITE_URL;
global $JACKPOT_LIMIT;
$cur_year=date("Y");
$result=<<<EOF
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link href='media/style.css' REL='stylesheet' TYPE='text/css'>
<title>$SITE_NAME</title>
</head>
<body>
<div id="top">
<center><img src="media/topbanner.gif"></center>
<div id="container">
<div class="clear"></div>
<!-- CONTENT -->
<!-- Footer -->
<div class="space_20"></div>
<center><small> © $cur_year <a href='$SITE_URL' target=_blank>$SITE_NAME</a> - <a href='mailto:[email protected]'>Contact us</a></small></center>
<center>
<div id="c0">
<center>
© 2004 - $cur_year <a href='http://www.asm.com' target='_blank'>ASM</a> - All Rights Reserved.<br>
Licensed to <a href='$SITE_URL' target=_blank>$SITE_NAME</a>.
</center>
</div>
<!-- Footer -->
</div>
</body>
</html>
EOF;
return $this->match_data($result);
}
}
?>
Mình muốn xóa bỏ phần footer ghi thông tin, nhưng cứ sửa dù chỉ 1 ký tự thì trang web không thể hiện thị được.
Ai có thể hướng dẫn em sửa cái này không
Xin cảm ơn nhiều.