在做WordPress主题开发的时候,经常要用到自定义字段”Custom Fields”。但是直接使用非常不友好,毕竟很多使用甲方维护人员都是小白。那就需要用到Advanced Custom Fields插件来设置自定义字段。以下整理几个Advanced Custom Fields插件的常用方法。 Continue reading
Category Archives: PHP
[PHP]根据User Agent判断是否搜索引擎蜘蛛
/* 判断搜索引擎 摘自Discuz x3.2 */
function checkrobot($useragent=''){
static $kw_spiders = array('bot', 'crawl', 'spider' ,'slurp', 'sohu-search', 'lycos', 'robozilla');
static $kw_browsers = array('msie', 'netscape', 'opera', 'konqueror', 'mozilla');
$useragent = strtolower(empty($useragent) ? $_SERVER['HTTP_USER_AGENT'] : $useragent);
if(strpos($useragent, 'http://') === false && dstrpos($useragent, $kw_browsers)) return false;
if(dstrpos($useragent, $kw_spiders)) return true;
return false;
}
function dstrpos($string, $arr, $returnvalue = false) {
if(empty($string)) return false;
foreach((array)$arr as $v) {
if(strpos($string, $v) !== false) {
$return = $returnvalue ? $v : true;
return $return;
}
}
return false;
}
[PHP]常用时间戳获取-今年、去年、本月、上月、今日、昨日
做数据处理常常用到,先记录一下。省的每次都翻写过的代码。 Continue reading
[PHP]循环判断字符串是否包含数组的值
function is_exist($str,$key){
foreach($key as $v){
if(strpos($str,$v)>-1){
return true;
}
}
return false;
}
$str = 'abcdefg我们中国';
$key = array('4','5','a');
if(is_exist($str,$key)){
echo 'YES';
}
else{
echo 'NO';
}
[PHP]PHP获取服务器IP输出为数组
用PHP执行ifconfig获得Linux服务器IP并输出为数组,下面是代码:
function getServerIp(){ //用ifconfig读取服务器IP并输出为数组
$ss = exec('/sbin/ifconfig | sed -n \'s/^ *.*addr:\\([0-9.]\\{7,\\}\\) .*$/\\1/p\'',$arr);
return $arr;
}
$ips=getServerIp();
foreach($ips as $k=>$v){//过滤IP
if(substr($v,0,3)=='127' || substr($v,0,3)=='10.' || substr($v,0,7)=='192.168' || substr($v,0,6)=='172.16'){
unset($ips[$k]);
}
}
shuffle($ips);//重新排序
print_r($ips);
[PHP]Date输出中文年月日时分秒
当然了,PHP的DATE函数是不可能直接输出中文的年月日的,但可以用下面这种方法自己写一个函数。 Continue reading