- header(''Content-type: text/css'');
- ob_start("compress");
- function compress($buffer) {
- /* remove comments */
- $buffer = preg_replace(''!/\*[^*]*\*+([^/][^*]*\*+)*/!'', '''', $buffer);
- /* remove tabs, spaces, newlines, etc. */
- $buffer = str_replace(array("\r\n", "\r", "\n", "\t", '' '', '' '', '' ''), '''', $buffer);
- return $buffer;
- }
- /* your css files */
- include(''master.css'');
- include(''typography.css'');
- include(''grid.css'');
- include(''print.css'');
- include(''handheld.css'');
- ob_end_flush();
[代码] 获取短网址
- function getTinyUrl($url) {
- return file_get_contents("http://tinyurl.com/api-create.php?url=".$url);
- }
[代码] 根据生日计算年龄
- function age($date){
- $year_diff = '''';
- $time = strtotime($date);
- if(FALSE === $time){
- return '''';
- }
- $date = date(''Y-m-d'', $time);
- list($year,$month,$day) = explode("-",$date);
- $year_diff = date("Y") – $year;
- $month_diff = date("m") – $month;
- $day_diff = date("d") – $day;
- if ($day_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(
Web开发者必备的10个救命的PHP代码片段 _网学 网学推荐
免费论文
原创论文
文章排行榜
- · PHP 5.0中多态性的实现方案浅析
- · 在PHP中实现重载构造函数的方法
- · 详解PHP的面向对象编程
- · ZendStudio for Eclipse 调试入门篇
- · PHP面向对象程序设计的61条黄金法则
- · php面向对象oop
- · php操作文件型数据库SQLite
- · php+mysql分页处理的探讨
- · PHP中使用FCKeditor
- · PHP中使用FCKeditor2.3.2配置
- · 在php中使用FCKeditor2.4.2
- · 织梦dedecms从底层标签实现二级菜单
- · iis下php无法找到该页 的错误解决
- · PHP V5.3 中的新特性: 名称空间
- · IIS下PHP的ISAPI和FastCGI比较
- · PHP开发框架的现状和展望
- · 优化PHP代码的40条建议
- · PHP MVC架构下的一些流行框架...
浏览:SERVER[''SCRIPT_FILENAME'']) != ''maintenance.php''){版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号- header("Location: http://example.com/maintenance.php");
- exit;
- }
- }else{
- if(basename(
Web开发者必备的10个救命的PHP代码片段 _网学 网学推荐
免费论文
原创论文
文章排行榜
- · PHP 5.0中多态性的实现方案浅析
- · 在PHP中实现重载构造函数的方法
- · 详解PHP的面向对象编程
- · ZendStudio for Eclipse 调试入门篇
- · PHP面向对象程序设计的61条黄金法则
- · php面向对象oop
- · php操作文件型数据库SQLite
- · php+mysql分页处理的探讨
- · PHP中使用FCKeditor
- · PHP中使用FCKeditor2.3.2配置
- · 在php中使用FCKeditor2.4.2
- · 织梦dedecms从底层标签实现二级菜单
- · iis下php无法找到该页 的错误解决
- · PHP V5.3 中的新特性: 名称空间
- · IIS下PHP的ISAPI和FastCGI比较
- · PHP开发框架的现状和展望
- · 优化PHP代码的40条建议
- · PHP MVC架构下的一些流行框架...
浏览:SERVER[''SCRIPT_FILENAME'']) == ''maintenance.php''){版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号- header("Location: http://example.com/");
- exit;
- }
- }
- }
[