-
php整理常用时间戳和日期
昨天0时时间戳 $yesterday_zero = strtotime(date('Y-m-d')) - 3600 * 24; 昨天此时时间戳 $yesterday_now = strtotime('-1 day'); 本周一时间戳 $week_this_monday = strtotime('last Monday'); 明天时间戳 $tomorrow = strtotime("+1 day"); 上周一时间戳 $week_ ...
-
ThinkPHP中处理分类常使用到的方法集合类
类里面的主要方法如下
(1)php组合一维数组
(2)php组合多维数组
(3)php传递一个子级返回父级id 例如:首页>>服装>>女装>>裙子
(4)php传递一个父级ID返回所有子级分类
(5)php获取指定父id的所有分类
(6)php生成树形结构数组>服装>>女装>>裙子 Static public function getParents($cate,$id){ $arr=array(); foreach($cate as $v){ if($v['id']==$id){ $arr[]=$v; $arr=array_merge(self::getParents($cate,$v['pid']),$arr); } } return $arr; } //传递一个父级ID返回所有子级分类 Static public function getChiIds($cate,$pid,$str=0){ $arr=array(); static $strarr = array(); foreach ($cate as $v){ if($v['pid']==$pid){ $arr[]= $v; $strarr[] = $v['id']; $arr=array_merge($arr,self::getChiIds($cate,$v['id'])); } } return $str == 1 ? $strarr : $arr; } //获取指定父id的所有分类 static public function getCateByPid($cate,$pid=0){ $arr = array(); foreach($cate as $v){ if($v['pid']==$pid){ $arr[] = array('id'=>$v['id'],'name'=>$v['name']); } } return $arr; } //生成树形结构数组 static public function getCateTreeArr($cate,$pid){ $arr = array(); foreach($cate as $v){ if($v['pid']==$pid){ $child = Category::getCateTreeArr($cate,$v['id']); if($child){ $v['child'] = $child; } $arr[] = $v; } } return $arr; } } /******************** 这是一个文章分类表的设置 CREATE TABLE IF NOT EXISTS `yk_article_cate` ( `id` smallint(4) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `alias` varchar(50) NOT NULL, `pid` smallint(4) unsigned NOT NULL DEFAULT '0', `spid` varchar(50) NOT NULL, `ordid` smallint(4) unsigned NOT NULL DEFAULT '255', `status` tinyint(1) NOT NULL DEFAULT '1', `seo_title` varchar(255) NOT NULL, `seo_keys` varchar(255) NOT NULL, `seo_desc` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; **************/ ?>
]]>
-
PHP $_FILES中error返回值详解
用PHP上传文件时,我们会用程序去监听浏览器发送过来的文件信息,首先会通 过$_FILES[fieldName][‘error’]的不同数值来判断此欲上传的文件状态是否正常。$_FILES[fieldName] [‘error’]==0代表一切正常,其它数值的具体含义请参考下面一段程序的注释部分,如有翻译不到之处还望指正! switc ...
-
常用的PHP函数
//OsPHP.COM.CN return checkdate($dateArr[1],$dateArr[2],$dateArr[0]); } return false; } function check_time($time) { //检查时间是否合法时间 $timeArr = explode(“:”, $time); if (is_numeric($timeArr[0]) && is_numeric($timeArr[1]) && is_numeric($timeArr[2])) { if (($timeArr[0] >= 0 && $timeArr[0] <= 23) && ($timeArr[1] >= 0 && $timeArr[1] <= 59) && ($timeArr[2] >= 0 && $timeArr[2] <= 59)) return true; else return false; } return false; } function DateDiff($date1, $date2, $unit = "") { //时间比较函数,返回两个日期相差几秒、几分钟、几小时或几天 switch ($unit) { case 's': $dividend = 1; break; case 'i': $dividend = 60; break; case 'h': $dividend = 3600; break; case 'd': $dividend = 86400; break; //oSPHP.COM.CN default: $dividend = 86400; } $time1 = strtotime($date1); $time2 = strtotime($date2); if ($time1 && $time2) return (float)($time1 – $time2) / $dividend; return false; } ?> PHP重定向 window.location =”$PHP_SELF”;“; 方法三:echo ““; ?> 获取访问者浏览器 //开源OSPhP.COM.CN { if (strpos($Agent,$Browsers[$i])) { $browser = $Browsers[$i]; $browserver =””; } } if (ereg(“Mozilla”,$Agent) && !ereg(“MSIE”,$Agent)) //OSPHP.COm.CN { $temp =explode(“(“, $Agent); $Part=$temp[0]; $temp =explode(“/”, $Part); $browserver=$temp[1]; $temp =explode(” “,$browserver); $browserver=$temp[0]; $browserver =preg_replace(“/([d.]+)/”,”1″,$browserver); $browserver = ” $browserver”; //开源代码OSPhP.COm.CN $browser = “Netscape Navigator”; } if (ereg(“Mozilla”,$Agent) && ereg(“Opera”,$Agent)) { $temp =explode(“(“, $Agent); $Part=$temp[1]; $temp =explode(“)”, $Part); $browserver=$temp[1]; $temp =explode(” “,$browserver);$browserver=$temp[2]; $browserver =preg_replace(“/([d.]+)/”,”1″,$browserver); $browserver = ” $browserver”; $browser = “Opera”; } if (ereg(“Mozilla”,$Agent) && ereg(“MSIE”,$Agent)) { $temp = explode(“(“, $Agent); $Part=$temp[1]; $temp = explode(“;”,$Part); $Part=$temp[1]; $temp = explode(” “,$Part);$browserver=$temp[2]; $browserver =preg_replace(“/([d.]+)/”,”1″,$browserver); $browserver = ” $browserver”; $browser = “Internet Explorer”; } if ($browser!=””) { $browseinfo = “$browser$browserver”; } else { $browseinfo = “Unknown”; } return $browseinfo; } //调用方法$browser=browseinfo() ;直接返回结果 ?> //oS 获取访问者操作系统 //OsPHP.COM.CN $os=”Windows 95″; } elseif (eregi(‘win 9x’,$Agent) && strpos($Agent, ‘4.90’)) { $os=”Windows ME”; } elseif (eregi(‘win’,$Agent) && ereg(’98’,$Agent)) { $os=”Windows 98″; } elseif (eregi(‘win’,$Agent) && eregi(‘nt 5.0’,$Agent)) { $os=”Windows 2000″; } elseif (eregi(‘win’,$Agent) && eregi(‘nt’,$Agent)) { //oSPHP.COM.CN $os=”Windows NT”; } elseif (eregi(‘win’,$Agent) && eregi(‘nt 5.1’,$Agent)) { $os=”Windows XP”; } elseif (eregi(‘win’,$Agent) && ereg(’32’,$Agent)) { $os=”Windows 32″; } elseif (eregi(‘linux’,$Agent)) { $os=”Linux”; } elseif (eregi(‘unix’,$Agent)) { $os=”Unix”; } elseif (eregi(‘sun’,$Agent) && eregi(‘os’,$Agent)) { $os=”SunOS”; } elseif (eregi(‘ibm’,$Agent) && eregi(‘os’,$Agent)) { //OSPHP.COm.CN $os=”IBM OS/2″; } elseif (eregi(‘Mac’,$Agent) && eregi(‘PC’,$Agent)) { $os=”Macintosh”; } elseif (eregi(‘PowerPC’,$Agent)) { //开源OSPhP.COM.CN $os=”PowerPC”; } elseif (eregi(‘AIX’,$Agent)) { $os=”AIX”; } elseif (eregi(‘HPUX’,$Agent)) { $os=”HPUX”; } elseif (eregi(‘NetBSD’,$Agent)) { $os=”NetBSD”; } elseif (eregi(‘BSD’,$Agent)) { $os=”BSD”; } elseif (ereg(‘OSF1’,$Agent)) { //PHP开源代码 $os=”OSF1″; } elseif (ereg(‘IRIX’,$Agent)) { $os=”IRIX”; } elseif (eregi(‘FreeBSD’,$Agent)) { $os=”FreeBSD”; } if ($os==”) $os = “Unknown”; return $os; } //调用方法$os=os_infor() ; ?> 文件格式类 ‘image/gif’, ‘jpg’ => ‘image/jpeg’, ‘jpeg’ => ‘image/jpeg’, ‘jpe’ => ‘image/jpeg’, ‘bmp’ => ‘image/bmp’, ‘png’ => ‘image/png’, ‘tif’ => ‘image/tiff’, ‘tiff’ => ‘image/tiff’, ‘pict’ => ‘image/x-pict’, ‘pic’ => ‘image/x-pict’, ‘pct’ => ‘image/x-pict’, ‘tif’ => ‘image/tiff’, ‘tiff’ => ‘image/tiff’, ‘psd’ => ‘image/x-photoshop’, ‘swf’ => ‘application/x-shockwave-flash’, ‘js’ => ‘application/x-javascrīpt’, ‘pdf’ => ‘application/pdf’, ‘ps’ => ‘application/postscrīpt’, ‘eps’ => ‘application/postscrīpt’, ‘ai’ => ‘application/postscrīpt’, ‘wmf’ => ‘application/x-msmetafile’, ‘css’ => ‘text/css’, ‘htm’ => ‘text/html’, ‘html’ => ‘text/html’, ‘txt’ => ‘text/plain’, ‘xml’ => ‘text/xml’, ‘wml’ => ‘text/wml’, ‘wbmp’ => ‘image/vnd.wap.wbmp’, ‘mid’ => ‘audio/midi’, ‘wav’ => ‘audio/wav’, ‘mp3’ => ‘audio/mpeg’, ‘mp2’ => ‘audio/mpeg’, ‘avi’ => ‘video/x-msvideo’, ‘mpeg’ => ‘video/mpeg’, ‘mpg’ => ‘video/mpeg’, ‘qt’ => ‘video/quicktime’, ‘mov’ => ‘video/quicktime’, ‘lha’ => ‘application/x-lha’, ‘lzh’ => ‘application/x-lha’, ‘z’ => ‘application/x-compress’, ‘gtar’ => ‘application/x-gtar’, ‘gz’ => ‘application/x-gzip’, ‘gzip’ => ‘application/x-gzip’, ‘tgz’ => ‘application/x-gzip’, ‘tar’ => ‘application/x-tar’, ‘bz2’ => ‘application/bzip2’, ‘zip’ => ‘application/zip’, ‘arj’ => ‘application/x-arj’, ‘rar’ => ‘application/x-rar-compressed’, ‘hqx’ => ‘application/mac-binhex40’, ‘sit’ => ‘application/x-stuffit’, ‘bin’ => ‘application/x-macbinary’, ‘uu’ => ‘text/x-uuencode’, ‘uue’ => ‘text/x-uuencode’, ‘latex’=> ‘application/x-latex’, //开源OSPhP.COM.CN ‘ltx’ => ‘application/x-latex’, ‘tcl’ => ‘application/x-tcl’, ‘pgp’ => ‘application/pgp’, ‘asc’ => ‘application/pgp’, ‘exe’ => ‘application/x-msdownload’, ‘doc’ => ‘application/msword’, ‘rtf’ => ‘application/rtf’, ‘xls’ => ‘application/vnd.ms-excel’, ‘ppt’ => ‘application/vnd.ms-powerpoint’, ‘mdb’ => ‘application/x-msaccess’, ‘wri’ => ‘application/x-mswrite’, ); ?> php生成excel文档 //开源OSPhP.COM.CN echo “test2tn”; echo “test1t”; echo “test2tn”; echo “test1t”; echo “test2tn”; echo “test1t”; echo “test2tn”; //改动相应文件头就可以输出.doc .xls等文件格式了 ?> 时间比较问题 举一个简单例子说明:比如一个论坛对当天发表的贴子用new图片标记一下。 方法一: rows[$i][date]中为数据库中datetime字段值. $today=time(); $theDay=date(“Y-m-d H:i:s”,$today-24*3600); $newTag=$db->rows[$i][date]>=$theDay?”
“:””; //方法二: $newTag=$db->rows[$i][date]>=date(“Y-m-d 00:00:00″)?”
“:””; ?> /提取页面和浏览器提交的变量,作用相当于使PHP.INI开了全局变量 //OSPHP.com.CN //读取文件函数 //写入文件函数 //页面快速转向 nn
页面转向中…. n”; print “n”; print “
-
PHP使用JMail发送邮件
silent = true; //屏蔽例外错误 $jmail->charset = ‘gb2312’; //否则中文会乱码 $jmail->From = ‘web535000@163.com’; //这里理论上是可以不与发件人地址相同的,但用163的试了几次都不行,改成一样的就可以了 $jmail->FromName = ‘BoboTest’; $jmail->AddRecipient(‘abc1@1 ...
-
php连接mssql的故障问题mssql_connect() [function.mssql-connect]: message: 登录失败。 (severity 14)
不能连接mssql 报错:mssql_connect() [function.mssql-connect]: message: 登录失败。 (severity 14)php.inimssql.secure_connection = Off改成这个即可,然后重启服务器。windows+php 每次修改php.ini都需要重启机器才能生效。。。。没linux好,太烂了。
-
PHP 连接SQL Server2005 失败,Fatal error: Call to undefined function mssql_connect() in
Loaded Configuration File D:\wamp\Apache2\bin\php.ini 注意:加载的是D:\wamp\Apache2\bin\php.ini ,所以修改;extension=php_mssql.dll 不要搞错。 三、打开 D:\wamp\Apache2\bin\php.ini ,设置两个地方:即去掉;extension=php_mssql.dll前的”;”,再设置mssql.secure_connec ...