删除无用函数
This commit is contained in:
parent
b7145eb7b3
commit
6b4aad0769
|
@ -30,101 +30,7 @@ function isMobile() {
|
||||||
if (ismobile() == true) {$ua = 'wap';}else {$ua = 'pc';}
|
if (ismobile() == true) {$ua = 'wap';}else {$ua = 'pc';}
|
||||||
|
|
||||||
|
|
||||||
function get_curl($url,$post=0,$referer=0,$cookie=0,$header=0,$ua=0,$nobaody=0){
|
|
||||||
$ch = curl_init();
|
|
||||||
curl_setopt($ch, CURLOPT_URL,$url);
|
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
|
|
||||||
$httpheader[] = "Accept:*/*";
|
|
||||||
$httpheader[] = "Accept-Encoding:gzip,deflate,sdch";
|
|
||||||
$httpheader[] = "Accept-Language:zh-CN,zh;q=0.8";
|
|
||||||
$httpheader[] = "Connection:close";
|
|
||||||
curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheader);
|
|
||||||
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
|
|
||||||
if($post){
|
|
||||||
curl_setopt($ch, CURLOPT_POST, 1);
|
|
||||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
|
|
||||||
}
|
|
||||||
if($header){
|
|
||||||
curl_setopt($ch, CURLOPT_HEADER, TRUE);
|
|
||||||
}
|
|
||||||
if($cookie){
|
|
||||||
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
|
|
||||||
}
|
|
||||||
if($referer){
|
|
||||||
if($referer==1){
|
|
||||||
curl_setopt($ch, CURLOPT_REFERER, 'http://m.qzone.com/infocenter?g_f=');
|
|
||||||
}else{
|
|
||||||
curl_setopt($ch, CURLOPT_REFERER, $referer);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if($ua){
|
|
||||||
curl_setopt($ch, CURLOPT_USERAGENT,$ua);
|
|
||||||
}else{
|
|
||||||
curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (Linux; Android 4.4.2; NoxW Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36');
|
|
||||||
}
|
|
||||||
if($nobaody){
|
|
||||||
curl_setopt($ch, CURLOPT_NOBODY,1);
|
|
||||||
}
|
|
||||||
curl_setopt($ch, CURLOPT_ENCODING, "gzip");
|
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
|
|
||||||
$ret = curl_exec($ch);
|
|
||||||
curl_close($ch);
|
|
||||||
return $ret;
|
|
||||||
}
|
|
||||||
function real_ip(){
|
|
||||||
$ip = $_SERVER['REMOTE_ADDR'];
|
|
||||||
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && preg_match_all('#\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}#s', $_SERVER['HTTP_X_FORWARDED_FOR'], $matches)) {
|
|
||||||
foreach ($matches[0] AS $xip) {
|
|
||||||
if (!preg_match('#^(10|172\.16|192\.168)\.#', $xip)) {
|
|
||||||
$ip = $xip;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} elseif (isset($_SERVER['HTTP_CLIENT_IP']) && preg_match('/^([0-9]{1,3}\.){3}[0-9]{1,3}$/', $_SERVER['HTTP_CLIENT_IP'])) {
|
|
||||||
$ip = $_SERVER['HTTP_CLIENT_IP'];
|
|
||||||
} elseif (isset($_SERVER['HTTP_CF_CONNECTING_IP']) && preg_match('/^([0-9]{1,3}\.){3}[0-9]{1,3}$/', $_SERVER['HTTP_CF_CONNECTING_IP'])) {
|
|
||||||
$ip = $_SERVER['HTTP_CF_CONNECTING_IP'];
|
|
||||||
} elseif (isset($_SERVER['HTTP_X_REAL_IP']) && preg_match('/^([0-9]{1,3}\.){3}[0-9]{1,3}$/', $_SERVER['HTTP_X_REAL_IP'])) {
|
|
||||||
$ip = $_SERVER['HTTP_X_REAL_IP'];
|
|
||||||
}
|
|
||||||
return $ip;
|
|
||||||
}
|
|
||||||
function get_ip_city($ip)
|
|
||||||
{
|
|
||||||
$url = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=';
|
|
||||||
@$city = get_curl($url . $ip);
|
|
||||||
$city = json_decode($city, true);
|
|
||||||
if ($city['city']) {
|
|
||||||
$location = $city['province'].$city['city'];
|
|
||||||
} else {
|
|
||||||
$location = $city['province'];
|
|
||||||
}
|
|
||||||
if($location){
|
|
||||||
return $location;
|
|
||||||
}else{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function send_mail($to, $sub, $msg) {
|
|
||||||
global $conf;
|
|
||||||
include_once ROOT.'includes/smtp.class.php';
|
|
||||||
$From = $conf['mail_name'];
|
|
||||||
$Host = $conf['mail_stmp'];
|
|
||||||
$Port = $conf['mail_port'];
|
|
||||||
$SMTPAuth = 1;
|
|
||||||
$Username = $conf['mail_name'];
|
|
||||||
$Password = $conf['mail_pwd'];
|
|
||||||
$Nickname = $conf['sitename'];
|
|
||||||
$SSL = false;
|
|
||||||
$mail = new SMTP($Host , $Port , $SMTPAuth , $Username , $Password , $SSL);
|
|
||||||
$mail->att = array();
|
|
||||||
if($mail->send($to , $From , $sub , $msg, $Nickname)) {
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return $mail->log;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function daddslashes($string, $force = 0, $strip = FALSE) {
|
function daddslashes($string, $force = 0, $strip = FALSE) {
|
||||||
!defined('MAGIC_QUOTES_GPC') && define('MAGIC_QUOTES_GPC', get_magic_quotes_gpc());
|
!defined('MAGIC_QUOTES_GPC') && define('MAGIC_QUOTES_GPC', get_magic_quotes_gpc());
|
||||||
if(!MAGIC_QUOTES_GPC || $force) {
|
if(!MAGIC_QUOTES_GPC || $force) {
|
||||||
|
@ -139,29 +45,6 @@ function daddslashes($string, $force = 0, $strip = FALSE) {
|
||||||
return $string;
|
return $string;
|
||||||
}
|
}
|
||||||
|
|
||||||
function strexists($string, $find) {
|
|
||||||
return !(strpos($string, $find) === FALSE);
|
|
||||||
}
|
|
||||||
|
|
||||||
function dstrpos($string, $arr) {
|
|
||||||
if(empty($string)) return false;
|
|
||||||
foreach((array)$arr as $v) {
|
|
||||||
if(strpos($string, $v) !== false) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkmobile() {
|
|
||||||
$useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
|
|
||||||
$ualist = array('android', 'midp', 'nokia', 'mobile', 'iphone', 'ipod', 'blackberry', 'windows phone');
|
|
||||||
if((dstrpos($useragent, $ualist) || strexists($_SERVER['HTTP_ACCEPT'], "VND.WAP") || strexists($_SERVER['HTTP_VIA'],"wap"))){
|
|
||||||
return true;
|
|
||||||
}else{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function authcode($string, $operation = 'DECODE', $key = '', $expiry = 0) {
|
function authcode($string, $operation = 'DECODE', $key = '', $expiry = 0) {
|
||||||
$ckey_length = 4;
|
$ckey_length = 4;
|
||||||
|
@ -204,91 +87,10 @@ function authcode($string, $operation = 'DECODE', $key = '', $expiry = 0) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function random($length, $numeric = 0) {
|
|
||||||
$seed = base_convert(md5(microtime().$_SERVER['DOCUMENT_ROOT']), 16, $numeric ? 10 : 35);
|
|
||||||
$seed = $numeric ? (str_replace('0', '', $seed).'012340567890') : ($seed.'zZ'.strtoupper($seed));
|
|
||||||
$hash = '';
|
|
||||||
$max = strlen($seed) - 1;
|
|
||||||
for($i = 0; $i < $length; $i++) {
|
|
||||||
$hash .= $seed{mt_rand(0, $max)};
|
|
||||||
}
|
|
||||||
return $hash;
|
|
||||||
}
|
|
||||||
function getSetting($k, $force = false){
|
|
||||||
global $DB,$CACHE;
|
|
||||||
if($force) return $setting[$k] = $DB->get_row("SELECT v FROM web_config WHERE k='$k' limit 1");
|
|
||||||
$cache = $CACHE->get($k);
|
|
||||||
return $cache[$k];
|
|
||||||
}
|
|
||||||
|
|
||||||
function saveSetting($k, $v){
|
function saveSetting($k, $v){
|
||||||
$v = daddslashes($v);
|
$v = daddslashes($v);
|
||||||
return mysqli_query($GLOBALS['con'],"UPDATE `lylme_config` SET `v` = '$v' WHERE `lylme_config`.`k` = '$k';");
|
return mysqli_query($GLOBALS['con'],"UPDATE `lylme_config` SET `v` = '$v' WHERE `lylme_config`.`k` = '$k';");
|
||||||
}
|
}
|
||||||
|
|
||||||
function showmsg($content = '未知的异常',$type = 4,$back = false)
|
|
||||||
{
|
|
||||||
switch($type)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
$panel="success";
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
$panel="info";
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
$panel="warning";
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
$panel="danger";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '<div class="panel panel-'.$panel.'">
|
|
||||||
<div class="panel-heading">
|
|
||||||
<h3 class="panel-title">提示信息</h3>
|
|
||||||
</div>
|
|
||||||
<div class="panel-body">';
|
|
||||||
echo $content;
|
|
||||||
|
|
||||||
if ($back) {
|
|
||||||
echo '<hr/><a href="'.$back.'"><< 返回上一页</a>';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
echo '<hr/><a href="javascript:history.back(-1)"><< 返回上一页</a>';
|
|
||||||
|
|
||||||
echo '</div>
|
|
||||||
</div>';
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
function sysmsg($msg = '未知的异常',$die = true) {
|
|
||||||
?>
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>站点提示信息</title>
|
|
||||||
<style type="text/css">
|
|
||||||
html{background:#eee}body{background:#fff;color:#333;font-family:"微软雅黑","Microsoft YaHei",sans-serif;margin:2em auto;padding:1em 2em;max-width:700px;-webkit-box-shadow:10px 10px 10px rgba(0,0,0,.13);box-shadow:10px 10px 10px rgba(0,0,0,.13);opacity:.8}h1{border-bottom:1px solid #dadada;clear:both;color:#666;font:24px "微软雅黑","Microsoft YaHei",,sans-serif;margin:30px 0 0 0;padding:0;padding-bottom:7px}#error-page{margin-top:50px}h3{text-align:center}#error-page p{font-size:9px;line-height:1.5;margin:25px 0 20px}#error-page code{font-family:Consolas,Monaco,monospace}ul li{margin-bottom:10px;font-size:9px}a{color:#21759B;text-decoration:none;margin-top:-10px}a:hover{color:#D54E21}.button{background:#f7f7f7;border:1px solid #ccc;color:#555;display:inline-block;text-decoration:none;font-size:9px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;-webkit-border-radius:3px;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);box-shadow:inset 0 1px 0 #fff,0 1px 0 rgba(0,0,0,.08);vertical-align:top}.button.button-large{height:29px;line-height:28px;padding:0 12px}.button:focus,.button:hover{background:#fafafa;border-color:#999;color:#222}.button:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.2);box-shadow:1px 1px 1px rgba(0,0,0,.2)}.button:active{background:#eee;border-color:#999;color:#333;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}table{table-layout:auto;border:1px solid #333;empty-cells:show;border-collapse:collapse}th{padding:4px;border:1px solid #333;overflow:hidden;color:#333;background:#eee}td{padding:4px;border:1px solid #333;overflow:hidden;color:#333}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body id="error-page">
|
|
||||||
<?php echo '<h3>站点提示信息</h3>';
|
|
||||||
echo $msg; ?>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
<?php
|
|
||||||
if ($die == true) {
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function checkIfActive($string) {
|
|
||||||
$array=explode(',',$string);
|
|
||||||
$php_self=substr($_SERVER['REQUEST_URI'],strrpos($_SERVER['REQUEST_URI'],'/')+1,strrpos($_SERVER['REQUEST_URI'],'.')-strrpos($_SERVER['REQUEST_URI'],'/')-1);
|
|
||||||
if (in_array($php_self,$array)){
|
|
||||||
return 'active';
|
|
||||||
}else
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
?>
|
|
Loading…
Reference in New Issue