php
yimao110
这个作者很懒,什么都没留下…
展开
-
php---- 目录与文件
一.目录操作basename -- 返回路径中的文件名部分dirname -- 返回路径中的目录部分pathinfo -- 返回文件路径的信息realpath -- 返回规范化的绝对路径名$path = 'demo1.php'; $path = realpath($path); echo basename($path);echo '';转载 2012-12-19 10:25:06 · 276 阅读 · 0 评论 -
Thinksns常用函数一览表
Thinksns常用函数一览表:以下是extend.php :* function get_client_ip() {}获取客户端IP地址 * function msubstr($str, $start=0, $length, $charset="utf-8", $suffix=true) 字符串截取,支持中文和其它编码 * function mStr($str, $lengt原创 2012-12-21 14:01:31 · 684 阅读 · 0 评论 -
PHP中数组合并的两种方法及区别介绍
PHP数组合并两种方法及区别 如果是关联数组,如下: 复制代码 代码如下:$a = array( 'where' => 'uid=1', 'order' => 'uid', ); $b = array( 'where' => 'uid=2', 'order' => 'uid desc', ); 1. array_merge,如果两个数组存在相同的原创 2013-01-29 09:07:06 · 371 阅读 · 0 评论 -
php文件上传2
上载文件表单"multipart/form-data" action="index.php" method="post">请选择文件:"upload_file" type="file">"hidden" name="MAX_FILE_SIZE" value="30000">"submit" value="上传文件"> define(UPLOAD_DI转载 2013-01-16 16:38:51 · 291 阅读 · 0 评论 -
常用排序
/冒泡排序(数组排序) function bubble_sort($array) { $count = count($array); if ($count for($i=0; $i for($j=$count-1; $j>$i; $j--){原创 2013-01-16 16:57:18 · 216 阅读 · 0 评论 -
php文件下载类
//====================================================// FileName:download.class.php// Summary: 文件下载类 PHP100.com// $download=new download('php,exe,html',false);//转载 2013-01-16 17:22:56 · 252 阅读 · 0 评论 -
php验证码
$rand='';for($i=0; $i$rand.= dechex(rand(1,15));}echo $rand原创 2013-01-16 16:22:16 · 194 阅读 · 0 评论