php 948

#PHP
PHP求时间间隔 n天、周、月、年后的时间

<?php date_default_timezone_set('PRC'); // 设置时区 $date1 = strtotime('2015-01-01'); //把日期…

2015-01-04 182

#PHP
MongoDB操作PHP类

仿写CI的,带测试实例。 mongo_config.php <?php $config["host"] = "localhost"; …

2015-01-04 494

#PHP
不变形截图的PHP代码

<?php function my_image_resize($src_file, $dst_file , $new_width , $new_height) { $src_…

2015-01-04 576

#PHP
给现有的图片加文字水印php代码

php类库给现有的图片加文字水印,代码不是很完善,欢迎大家多多指教!代码如下: <?php /*PHP图片加文字水印类库 QQ:3697578482 伤心的歌 该类库暂时只支…

2015-01-04 815

#PHP
全角字符转换为半角字符PHP函数

/** * 全角字符转换为半角字符 */ function make_semiangle ( $str ) { $arr = array ( '0' => '0', '1' …

2015-01-04 639

#PHP
php日期加减

对于每天的统计数据,我们日期 date("Ymd") 转换成整型来作为数据库的主键,所以在寻找一段时间统计数据的时候需要用到时间的加减; 例如,30天内的数据 …

2015-01-04 249

#PHP
PHP从网络下载文件

set_time_limit(0); // Supports all file types // URL Here: $url = 'http://somsite.com/some…

2015-01-04 122

#PHP
应用curl扩展抓取网页

<?php namespace Think; header("Content-Type: text/html;charset=utf-8"); class…

2015-01-04 793

#PHP
PHP随机颜色生成器

function randomColor() { $str = '#'; for($i = 0 ; $i < 6 ; $i++) { $randNum = rand(0 , …

2015-01-04 969

#PHP
PHP下载文件

$filename = $_GET['file']; //Get the fileid from the URL // Query the file ID $query = spr…

2015-01-04 945

#PHP
PHP运行时强制显示出错信息

error_reporting(E_ALL); ini_set('display_errors', '1'); //将出错信息输出到一个文本文件 ini_set('error_lo…

2014-12-31 807

#PHP
使用正则表达式来检测标签是否关闭

function check_html($html) { preg_match_all("/<([a-zA-Z0-9]+)\\s*[^\\/>]*>/&…

2014-12-30 197