/** * 将字符串转换为数组 * * @param string$data 字符串 * @return array 返回数组格式,如果,data为空,则返回空数组 */ function string2array($data) { if($data == ) return array(); @eval(\$array = $data;); return...
处理输出缓冲的相关资函数介绍函数主要有这么几个: ob_start() 开始输出缓冲, 这时PHP停止输出, 在这以后的输出都被转到一个内部的缓冲里. ob_get_contents() 这个函数返回内部缓冲的内容...
点击查看测试 使用谷歌的时候经常无法访问 所以就没有办法生成自己需要的二维码 使用方法: 解压到网站的根目录之后就访问http://xxx/qrcode/?data=生成二维码域名 xxx是自己的网站域名...
//PHP5中的简单方法 functiongetFileList2($directory){ $files=array(); if(is_dir($directory)){ if($files=scandir($directory)){ $files=array_slice($files,2); } } return$files; }...
$_SERVER[REQUEST_METHOD]该变量 isset($_POST[表单名或字段名]) 或者$_SERVER[REQUEST_METHOD]==POST判断...
?php function Pinyin($_String, $_Code=gb2312) { $_DataKey = a|ai|an|ang|ao|ba|bai|ban|bang|bao|bei|ben|beng|bi|bian|biao|bie|bin|bing|bo|bu|ca|cai|can|cang|cao|ce|ceng|cha. |chai|chan|chang|chao|che|chen|cheng|chi|chong|chou|chu|chuai|chuan...
$_SERVER[HTTP_HOST] 当前域名$_SERVER[REQUEST_URI] 当前文件和参数...
php页面为utf编码 header(Content-type: text/html; charset=utf-8); php页面为gbk编码 header(Content-type: text/html; charset=gb2312); php页面为big5编码 header(Content-type: text/html; charset=big5);...
$weekarray=array(日,一,二,三,四,五,六); echo 星期.$weekarray[date(w)];...
function get_extension($file) { return substr($file, strrpos($file, .)+1); }...