_diff < 0 || $month_diff < 0) $year_diff–; return $year_diff; }
计算执行时间
- //Create a variable for start time
- $time_start = microtime(true);
-
- // Place your PHP/HTML/JavaScript/CSS/Etc. Here
-
- //Create a variable for end time
- $time_end = microtime(true);
- //Subtract the two times to get seconds
- $time = $time_end - $time_start;
-
- echo ''Script took ''.$time.'' seconds to execute'';
PHP的维护模式
- function maintenance($mode = FALSE){
- if($mode){
- if(basename(
10 个救命的 PHP 代码片段 - 凌众科技
快速业务通道
10 个救命的 PHP 代码片段
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-23
|
content |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn
为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!
|
|
|
SERVER[''SCRIPT_FILENAME'']) != ''maintenance.php''){ - header("Location: http://example.com/maintenance.php");
- exit;
- }
- }else{
- if(basename(
10 个救命的 PHP 代码片段 - 凌众科技
快速业务通道
10 个救命的 PHP 代码片段
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-23
|
content |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn
为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!
|
|
|
SERVER[''SCRIPT_FILENAME'']) == ''maintenance.php''){ - header("Location: http://example.com/");
- exit;
- }
- }
- }
阻止CSS样式被缓存
- <link href="/stylesheet.css?<?php echo time(); ?>" rel="stylesheet" type="text/css" /&glt;
为数字增加 st\nd\rd 等
- function make_ranked($rank) {
- $last = substr( $rank, -1 );
- $seclast = substr( $rank, -2, -1 );
- if( $last > 3 || $last == 0 ) $ext = ''th'';
- else if( $last == 3 ) $ext = ''rd'';
- else if( $last == 2 ) $ext = ''nd'';
- else $ext = ''st'';
-
- if( $last == 1 && $seclast == 1) $ext = ''th'';
- if( $last == 2 && $seclast == 1) $ext = ''th'';
- if( $last == 3 && $seclast == 1) $ext = ''th''; &
|