1 PHP获取文件扩展名(后缀) 2 function getExtension($filename){ 3 $myext = substr($filename, strrpos($filename, ‘.‘)); 4 return str_replace(‘.‘,‘‘,$myext); 5 } 6 使用方法如下: 7 $filename = ‘我的文档.doc‘; 8 echo getExtension($filename); 9 10 11 PHP获取文件大小并格式化 12 13 以下使用的函数可以获取文件的大小,并且转换成便于阅读的KB,MB等格式。 14 function formatSize($size) { 15 $sizes = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB"); 16 if ($size == 0) { 17 return(‘n/a‘); 18 } else { 19 return (round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $sizes[$i]); 20 } 21 } 22 使用方法如下: 23 $thefile = filesize(‘test_file.mp3‘); 24 echo formatSize($thefile); 25 26 27 28 PHP替换标签字符 29 30 有时我们需要将字符串、模板标签替换成指定的内容,可以用到下面的函数: 31 32 function stringParser($string,$replacer){ 33 $result = str_replace(array_keys($replacer), array_values($replacer),$string); 34 return $result; 35 } 36 使用方法如下: 37 38 $string = ‘The {b}anchor text{/b} is the {b}actual word{/b} or words used {br}to describe the link {br}itself‘; 39 $replace_array = array(‘{b}‘ => ‘<b>‘,‘{/b}‘ => ‘</b>‘,‘{br}‘ => ‘<br />‘); 40 41 echo stringParser($string,$replace_array); 42 43 44 45 46 PHP列出目录下的文件名 47 48 如果你想列出目录下的所有文件,使用以下代码即可: 49 function listDirFiles($DirPath){ 50 if($dir = opendir($DirPath)){ 51 while(($file = readdir($dir))!== false){ 52 if(!is_dir($DirPath.$file)) 53 { 54 echo "filename: $file<br />"; 55 } 56 } 57 } 58 } 59 使用方法如下: 60 61 listDirFiles(‘home/some_folder/‘); 62 63 64 65 PHP获取当前页面URL 66 67 以下函数可以获取当前页面的URL,不管是http还是https。 68 function curPageURL() { 69 $pageURL = ‘http‘; 70 if (!empty($_SERVER[‘HTTPS‘])) {$pageURL .= "s";} 71 $pageURL .= "://"; 72 if ($_SERVER["SERVER_PORT"] != "80") { 73 $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; 74 } else { 75 $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; 76 } 77 return $pageURL; 78 } 79 使用方法如下: 80 81 echo curPageURL(); 82 83 84 85 PHP强制下载文件 86 87 有时我们不想让浏览器直接打开文件,如PDF文件,而是要直接下载文件,那么以下函数可以强制下载文件,函数中使用了application/octet-stream头类型。 88 89 function download($filename){ 90 if ((isset($filename))&&(file_exists($filename))){ 91 header("Content-length: ".filesize($filename)); 92 header(‘Content-Type: application/octet-stream‘); 93 header(‘Content-Disposition: attachment; filename="‘ . $filename . ‘"‘); 94 readfile("$filename"); 95 } else { 96 echo "Looks like file does not exist!"; 97 } 98 } 99 使用方法如下: 100 download(‘/down/test_45f73e852.zip‘); 101 102 103 104 PHP截取字符串长度 105 106 我们经常会遇到需要截取字符串(含中文汉字)长度的情况,比如标题显示不能超过多少字符,超出的长度用…表示,以下函数可以满足你的需求。 107 /* 108 Utf-8、gb2312都支持的汉字截取函数 109 cut_str(字符串, 截取长度, 开始长度, 编码); 110 编码默认为 utf-8 111 开始长度默认为 0 112 */ 113 function cutStr($string, $sublen, $start = 0, $code = ‘UTF-8‘){ 114 if($code == ‘UTF-8‘){ 115 $pa = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/"; 116 preg_match_all($pa, $string, $t_string); 117 118 if(count($t_string[0]) - $start > $sublen) return join(‘‘, array_slice($t_string[0], $start, $sublen))."..."; 119 return join(‘‘, array_slice($t_string[0], $start, $sublen)); 120 }else{ 121 $start = $start*2; 122 $sublen = $sublen*2; 123 $strlen = strlen($string); 124 $tmpstr = ‘‘; 125 126 for($i=0; $i<$strlen; $i++){ 127 if($i>=$start && $i<($start+$sublen)){ 128 if(ord(substr($string, $i, 1))>129){ 129 $tmpstr.= substr($string, $i, 2); 130 }else{ 131 $tmpstr.= substr($string, $i, 1); 132 } 133 } 134 if(ord(substr($string, $i, 1))>129) $i++; 135 } 136 if(strlen($tmpstr)<$strlen ) $tmpstr.= "..."; 137 return $tmpstr; 138 } 139 } 140 使用方法如下: 141 $str = "jQuery插件实现的加载图片和页面效果"; 142 echo cutStr($str,16); 143 144 145 146 PHP获取客户端真实IP 147 148 我们经常要用数据库记录用户的IP,以下代码可以获取客户端真实的IP: 149 //获取用户真实IP 150 function getIp() { 151 if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown")) 152 $ip = getenv("HTTP_CLIENT_IP"); 153 else 154 if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown")) 155 $ip = getenv("HTTP_X_FORWARDED_FOR"); 156 else 157 if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown")) 158 $ip = getenv("REMOTE_ADDR"); 159 else 160 if (isset ($_SERVER[‘REMOTE_ADDR‘]) && $_SERVER[‘REMOTE_ADDR‘] && strcasecmp($_SERVER[‘REMOTE_ADDR‘], "unknown")) 161 $ip = $_SERVER[‘REMOTE_ADDR‘]; 162 else 163 $ip = "unknown"; 164 return ($ip); 165 } 166 使用方法如下: 167 echo getIp(); 168 169 170 171 172 PHP防止SQL注入 173 174 我们在查询数据库时,出于安全考虑,需要过滤一些非法字符防止SQL恶意注入,请看一下函数: 175 function injCheck($sql_str) { 176 $check = preg_match(‘/select|insert|update|delete|\‘|\/\*|\*|\.\.\/|\.\/|union|into|load_file|outfile/‘, $sql_str); 177 if ($check) { 178 echo ‘非法字符!!‘; 179 exit; 180 } else { 181 return $sql_str; 182 } 183 } 184 使用方法如下: 185 186 187 1 188 echo injCheck(‘1 or 1=1‘); 189 190 191 192 PHP页面提示与跳转 193 194 我们在进行表单操作时,有时为了友好需要提示用户操作结果,并跳转到相关页面,请看以下函数: 195 function message($msgTitle,$message,$jumpUrl){ 196 $str = ‘<!DOCTYPE HTML>‘; 197 $str .= ‘<html>‘; 198 $str .= ‘<head>‘; 199 $str .= ‘<meta charset="utf-8">‘; 200 $str .= ‘<title>页面提示</title>‘; 201 $str .= ‘<style type="text/css">‘; 202 $str .= ‘*{margin:0; padding:0}a{color:#369; text-decoration:none;}a:hover{text-decoration:underline}body{height:100%; font:12px/18px Tahoma, Arial, sans-serif; color:#424242; background:#fff}.message{width:450px; height:120px; margin:16% auto; border:1px solid #99b1c4; background:#ecf7fb}.message h3{height:28px; line-height:28px; background:#2c91c6; text-align:center; color:#fff; font-size:14px}.msg_txt{padding:10px; margin-top:8px}.msg_txt h4{line-height:26px; font-size:14px}.msg_txt h4.red{color:#f30}.msg_txt p{line-height:22px}‘; 203 $str .= ‘</style>‘; 204 $str .= ‘</head>‘; 205 $str .= ‘<body>‘; 206 $str .= ‘<div class="message">‘; 207 $str .= ‘<h3>‘.$msgTitle.‘</h3>‘; 208 $str .= ‘<div class="msg_txt">‘; 209 $str .= ‘<h4 class="red">‘.$message.‘</h4>‘; 210 $str .= ‘<p>系统将在 <span style="color:blue;font-weight:bold">3</span> 秒后自动跳转,如果不想等待,直接点击 <a href="{$jumpUrl}">这里</a> 跳转</p>‘; 211 $str .= "<script>setTimeout(‘location.replace(\‘".$jumpUrl."\‘)‘,2000)</script>"; 212 $str .= ‘</div>‘; 213 $str .= ‘</div>‘; 214 $str .= ‘</body>‘; 215 $str .= ‘</html>‘; 216 echo $str; 217 } 218 使用方法如下: 219 220 message(‘操作提示‘,‘操作成功!‘,‘http://www.vudiy.com/‘); 221 222 223 224 PHP计算时长 225 226 我们在处理时间时,需要计算当前时间距离某个时间点的时长,如计算客户端运行时长,通常用hh:mm:ss表示。 227 function changeTimeType($seconds) { 228 if ($seconds > 3600) { 229 $hours = intval($seconds / 3600); 230 $minutes = $seconds % 3600; 231 $time = $hours . ":" . gmstrftime(‘%M:%S‘, $minutes); 232 } else { 233 $time = gmstrftime(‘%H:%M:%S‘, $seconds); 234 } 235 return $time; 236 } 237 使用方法如下: 238 $seconds = 3712; 239 echo changeTimeType($seconds); 240 241 242 243 url传值中汉字的编码处理 244 245 做个东西,需要调用用户名及链接,下面是对用户名中的汉字进行url编码的代码段! 246 function ConvertUrlEncode($text) 247 { 248 $textUrl = htmlspecialchars(urlencode($text)); 249 return $textUrl; 250 } 251 252 echo "<a href=‘http://www.nuodou.net/space-username-". ConvertUrlEncode("haibor") .".html‘ target=_blank>haibor</a><br><br>"; 253 echo "<a href=‘http://www.nuodou.net/space-username-". ConvertUrlEncode("小地瓜") .".html‘ target=_blank>小地瓜</a>"; 254 255 256 257 258 259 260 261 2、分页函数 262 这个函数历来比较热门,分页方法层中不穷,但原理就是那样而已~~喜欢的自己研究一下吧。 263 /** 264 * 分页函数 265 * 266 * $count 条目总数 267 * $perlogs 每页显示条数目 268 * $page 当前页码 269 * $url 页码的地址 270 */ 271 function multi($count, $perlogs, $page, $url, $anchor = ‘‘) { 272 $pnums = @ceil($count / $perlogs); 273 $multi = ‘‘; 274 $multiall = ‘<em>共 ‘.$pnums.‘ 页</em>‘; 275 $urlHome = preg_replace("|[\?&/][^\./\?&=]*page[=/\-]|", "", $url); 276 for ($i = $page - 5; $i <= $page + 5 && $i <= $pnums; $i++) { 277 if ($i > 0) { 278 if ($i == $page) { 279 $multi .= " <span>$i</span> "; 280 } elseif ($i == 1) { 281 $multi.= " <a href=\"$urlHome$anchor\">$i</a> "; 282 } else { 283 $multi.= " <a href=\"$url$i$anchor\">$i</a> "; 284 } 285 } 286 } 287 if ($page > 6){ 288 $multi = ‘<a href="‘.$urlHome.$anchor.‘" >首页</a><em>...</em>‘.$multi; 289 } 290 if ($page + 5 < $pnums){ 291 $multi .=‘<em>...</em> <a href="‘.$url.$pnums.$anchor.‘" >末页</a>‘; 292 } 293 if ($pnums <= 1){ 294 $multi = ‘‘; 295 $multiall = ‘‘; 296 } 297 return $multi.$multiall; 298 } 299 300 301 3、人性化时间格式 302 这个越来越受站长门喜欢了,特别是论坛,发帖时间都变为 XX秒前,xx小时前,今天发表,前天发表……样式多种多样,下面这个函数,可以自动把时间变为“个性化”。 303 function cus_date($timestamp, $dstr = ‘Y-m-d H:i‘) { 304 $timezone = 8; 305 $op = ‘‘; 306 $sec = time() - $timestamp; 307 $hover = floor($sec / 3600); 308 if ($hover == 0) { 309 $min = floor($sec / 60); 310 if ($min == 0) { 311 $op = $sec . ‘ 秒前‘; 312 } else { 313 $op = "$min 分钟前"; 314 } 315 } elseif ($hour < 24) { 316 $op = " $hour 小时前"; 317 } else { 318 $op = gmdate($dstr, $timestamp + $timezone * 3600); 319 } 320 return $op; 321 }
时间: 2024-10-27 10:04:01