摘要: <?php //此文件用于快速测试UTF8编码的文件是不是加了BOM,并可自动移除 //By Bob Shen $basedir="."; //修改此行为需要检测的目录,点表示当前目录 $auto=1; //是否自动移除发现的BOM信息。1为是,0为否。 //以下不用改动 if ($dh = ope 阅读全文
posted @ 2017-06-21 17:02 明月照亮天涯 阅读(511) 评论(0) 推荐(0) 编辑
摘要: text-overflow 属性规定当文本溢出包含元素时发生的事情。 语法: text-overflow: clip|ellipsis| string ; 这里主要说说 text-overflow: ellipsis; 阅读全文
posted @ 2017-04-12 12:13 明月照亮天涯 阅读(642) 评论(0) 推荐(0) 编辑
摘要: <div id="items" style="height:100%; width:100%; ; z-index:1000; position:fixed; top:0px; left:0px; display:none;"></div> 阅读全文
posted @ 2017-04-12 12:05 明月照亮天涯 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 在 Windows 下的设置例子如下: # 限制错误日志文件为 1M ErrorLog "|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 1M" # 每天生成一个错误日志文件 #ErrorLog "|bin/rotatelogs.exe logs/err 阅读全文
posted @ 2017-03-23 15:58 明月照亮天涯 阅读(386) 评论(0) 推荐(0) 编辑
摘要: error_reporting(E_ALL); date_default_timezone_set('Asia/ShangHai'); include_once('Classes/PHPExcel/IOFactory.php');//包含类文件 $filename = "test.xls";//要读 阅读全文
posted @ 2017-03-22 10:17 明月照亮天涯 阅读(8075) 评论(0) 推荐(1) 编辑
摘要: /** * * 产生随机字符串,不长于32位 * @param int $length * @return 产生的随机字符串 */function getNonceStr($length = 32) { $chars = "abcdefghijklmnopqrstuvwxyz0123456789"; 阅读全文
posted @ 2017-03-16 16:41 明月照亮天涯 阅读(338) 评论(0) 推荐(0) 编辑
摘要: $newWidth=600; $file_path='D:/myWorkspace/get_img/deal_img/jiaShuiYin/1.jpg'; $newName='D:/myWorkspace/get_img/deal_img/jiaShuiYin/2.jpg'; resizeImage 阅读全文
posted @ 2017-03-10 17:44 明月照亮天涯 阅读(894) 评论(0) 推荐(0) 编辑
摘要: //字体库 define('FONTFILE','C:/Windows/Fonts/MSYH.TTC'); $text='2020/12/31'; $fontfile='C:/Windows/Fonts/MSYH.TTC'; $newImageName=NULL;//NULL 不保存输出到浏览器;若 阅读全文
posted @ 2017-03-10 17:05 明月照亮天涯 阅读(619) 评论(0) 推荐(0) 编辑
摘要: Web系统中,从一个网页跳转到另一个网页,是LAMP项目中最常用的技术之一。页面跳转可能是由于用户单击链接、按钮等引发的,也可能是系统自动产生的。 此处介绍PHP中常用的实现页面自动跳转的方法。 PHP页面跳转一、header()函数 header()函数是PHP中进行页面跳转的一种十分简单的方法。 阅读全文
posted @ 2017-01-24 15:55 明月照亮天涯 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 对比起 Cookie,Session 是存储在服务器端的会话,相对安全,并且不像 Cookie 那样有存储长度限制,本文简单介绍 Session 的使用。由于 Session 是以文本文件形式存储在服务器端的,所以不怕客户端修改 Session 内容。实际上在服务器端的 Session 文件,PHP 阅读全文
posted @ 2017-01-18 22:50 明月照亮天涯 阅读(211) 评论(0) 推荐(0) 编辑