我的番茄炒蛋
生活如此精彩,挑战无处不在!

导航

 

2008年2月1日

摘要: php程序使用mail()函数发送邮件的时候,标题中文的话会出现乱码。 解决方法: 先用函数base64_encode() — 使用 MIME base64 对数据进行编码 标题字符串前加编码类型例如: =?UTF-8?B? 标题字符串后加:?= 邮件header说明Content-type — 防止邮件正文也乱码 $to = ‘xinple@example.com‘;... 阅读全文
posted @ 2008-02-01 14:57 bluesky 阅读(667) 评论(0) 推荐(0) 编辑
 
摘要: /* * [原创] 用一个SESSION 实现在精典购物车 * Author: Rock * Time: 2007-05-01 * 因为一个小程序用到购物车,风有不小不过功能太多。 * 今天就写了一个够自己用的购物车,精简型。 * 大家如果想用,可以根据自己的需求修改功能。 1、添加商品 2、移除商品 3... 阅读全文
posted @ 2008-02-01 14:54 bluesky 阅读(288) 评论(0) 推荐(0) 编辑
 
摘要: /*** * Finished: 2007-05-22 * COPY files or folder */ // example wlccopy('../test', '../bac'); /** * copy files or folder * notice: $path2 not in $path1 */ ... 阅读全文
posted @ 2008-02-01 14:51 bluesky 阅读(389) 评论(0) 推荐(0) 编辑
 
摘要: php实现文件下载 程序如下: $file_name = "filename.exe"; $file_dir = "/files/"; if (!file_exists($file_dir . $file_name)) { //检查文件是否存在 echo "文件找不到"; exit; } else { $file = fopen($file_dir . $file... 阅读全文
posted @ 2008-02-01 14:39 bluesky 阅读(447) 评论(1) 推荐(1) 编辑
 
摘要: checkdate : 验证日期的正确性。 date : 将服务器的时间格式化。 strftime : 将服务器的时间本地格式化。 ... 阅读全文
posted @ 2008-02-01 14:35 bluesky 阅读(1335) 评论(0) 推荐(0) 编辑
 
摘要: 阅读全文
posted @ 2008-02-01 14:31 bluesky 阅读(159) 评论(0) 推荐(0) 编辑
 
摘要: 阅读全文
posted @ 2008-02-01 14:29 bluesky 阅读(225) 评论(0) 推荐(0) 编辑
 
摘要: 如果对PHP的GD库比较熟悉,看懂这篇文章一点都不难了! ZwelL图片上传程序 上传文件: 允许上传的文件类型为: 已经成功上传文件名: ".$destination_folder.$fname.""; echo " 宽度:".$image_size[0]; echo " 长度:".$image_size[1]... 阅读全文
posted @ 2008-02-01 14:28 bluesky 阅读(371) 评论(0) 推荐(0) 编辑
 
摘要: 阅读全文
posted @ 2008-02-01 14:26 bluesky 阅读(250) 评论(0) 推荐(0) 编辑
 
摘要: 演示图片等比例缩小 阅读全文
posted @ 2008-02-01 14:21 bluesky 阅读(1014) 评论(1) 推荐(0) 编辑
 
摘要: StartTime = microtime();} function stop(){ $this->StopTime = microtime();} function spent(){ if ($this->TimeSpent) { return $this->TimeSpent; } else { $StartMicro = substr($this->StartTime,0,10); $Sta... 阅读全文
posted @ 2008-02-01 14:19 bluesky 阅读(225) 评论(0) 推荐(0) 编辑
 
摘要: 看了下phpMyadmin和Discuz!的代码,呵呵,于是偷抄了Discuz!的代码,形成了如下备份数据库的方法。(在这里感谢Discuz!的开发者) 备份数据库有两种方式,一种是只备份数据库的结构,一种把是结构和所有的数据都备份出来,当然是第二种方法好啦,不过我为了考虑可能的需求就都作啦。 /****** 备份数据库结构 ******/ /* 函数名称:table2sql() 函数功... 阅读全文
posted @ 2008-02-01 14:17 bluesky 阅读(439) 评论(0) 推荐(0) 编辑
 
摘要: debug = $debug; if ($host != '') { if (is_resource($this->connect($host, $user, $pass))) { if (mysql_get_server_info() >= "4.1") { mysql_query("... 阅读全文
posted @ 2008-02-01 14:12 bluesky 阅读(381) 评论(0) 推荐(0) 编辑