1 文件读取函式
2 //文件读取函式
3 function PHP_Read($file_name) {
4 $fd=fopen($file_name,r);
5 while($bufline=fgets($fd, 4096)){
6 $buf.=$bufline;
7 }
8 fclose($fd);
9 return $buf;
10 }
11 ?>
12
13 文件写入函式
14
15 //文件写入函式
16 function PHP_Write($file_name,$data,$method="w") {
17 $filenum=@fopen($file_name,$method);
18 flock($filenum,LOCK_EX);
19 $file_data=fwrite($filenum,$data);
20 fclose($filenum);
21 return $file_data;
22 }
23 ?>
24
25 静态页面生成函式
26 //静态页面生成函式
27 function phptohtm($filefrom,$fileto,$u2u=1){
28 if($u2u==1){
29 $data=PHP_Read($filefrom);
30 }else{
31 $data=$filefrom;
32 }
33 PHP_Write($fileto,$data);
34 return true;
35 }
36 ?>
37
38 指定条件信息数量检索函式
39
40 //指定条件信息数量检索函式
41 function rec_exist($table,$where){
42 $query="select count(*) as num from $table ".$where;
43 $result=mysql_query($query) or die(nerror(1));
44 $rowcount=mysql_fetch_array($result);
45 $num=$rowcount["num"];
46 if ($num==0){
47 return false;
48 }
49 return $num;
50 }
51 ?>
52
53 目录删除函式
54 //目录删除函式
55 function del_DIR($directory){
56 $mydir=dir($directory);
57 while($file=$mydir->read()){
58 if((is_dir("$directory/$file")) AND ($file!=".") AND ($file!="..")){
59 del_DIR("$directory/$file");
60 }else{
61 if(($file!=".") AND ($file!="..")){
62 unlink("$directory/$file");
63 //echo "unlink $directory/$file ok ";
64 }
65 }
66 }
67 $mydir->close();
68 rmdir($directory);
69 //echo "rmdir $directory ok ";
70 }
71 ?>
72
73 目录名称合法性检测函式
74 //目录名称合法性检测
75 function isen($str){
76 $ret="";
77 for($i=0;$i $p=ord(substr($str,$i,1));
78 if(($p<48 & $p!=45 & $p!=46) || ($p>57 & $p<65) || ($p>90 & $p<97 & $p!=95) || $p>122){
79 nerror("不符合规范!");
80 }
81 $ret.=chr($p);
82 }
83 return $ret;
84 }
85 ?>
86
87 分页函式
88 //分页函式
89 function splitlist($HALT,$LRLIST,$ECHOCNT,$paper,$table,$where,$page_id,$userid){
90 global $splitstr,$sumcnt;
91 if($paper=="" || $sumcnt==""){
92 $query = "select count(*) as num from $table $where";
93 $result = mysql_query($query);
94 $row = mysql_fetch_array($result);
95 $sumcnt=$row["num"];
96 if($sumcnt==0){
97 nerror("该版内还没有选择发布新闻 !");
98 }
99 $paper=1;
100 }
101 $sumpaper=($sumcnt-$sumcnt%$ECHOCNT)/$ECHOCNT;
102 if(($sumcnt%$ECHOCNT)!=0) $sumpaper+=1;
103 if($sumpaper==1 && $HALT==0) return($where);
104 $enwhere=base64_encode(base64_encode($where));
105 if(($LRLIST*2+1) < $sumpaper){
106 if(($paper-$LRLIST) < 2){
107 $tract=1;
108 $sub=$LRLIST*2+1;
109 }else if(($paper+$LRLIST) >= $sumpaper){
110 $tract=$sumpaper-($LRLIST*2);
111 $sub=$sumpaper;
112 }else{
113 $tract=$paper-$LRLIST;
114 $sub=$paper+$LRLIST;
115 }
116 }else{
117 $tract=1;
118 $sub=$sumpaper;
119 }
120 $uppaper=$paper-1;
121 $downpaper=$paper+1;
122 $startcnt=($paper-1)*$ECHOCNT;
123 $where.=" limit ${ startcnt },${ ECHOCNT }";
124 if($tract > 1) { $splitstr="【 << "; }
125 else $splitstr="【 << ";
126 for($i=$tract;$i<=$sub;$i++){
127 if ($i!=$paper) $splitstr.="".$i." ";
128 else $splitstr.="".$i." ";
129 }
130 if ($sub!=$sumpaper) $splitstr.=">> 】";
131 else $splitstr.=">> 】";
132 return($where);
133 }
134 ?>
135
136 关于分页函式的使用说明
137 /*
138 #### 检索分页函式 ####
139 Int $HALT - 检索结果仅分1页时是否(1/0)显示页码条
140 Int $LRLIST - (页码条显示页码数-1)/2
141 Int $ECHOCNT - 检索时每页显示记录的数量
142 Int $paper - 页数,预提取:$paper=$HTTP_GET_VARS[paper];
143 Varchar $table - 数据表名,预附值:$table="db.table";
144 Varchar $where - 检索条件,预附值:$where="where field='value'";
145
146 Varchar $enwhere - 将原$where进行两次base64_encode()编码后以GET的方式提交
147 Varchar $splitstr - 页码条输出字串,执行函式后在相应的位置执行 echo $splitstr;
148
149 函式调用前需获取变量 -
150 $paper=$HTTP_GET_VARS[paper];
151 $sumcnt=$HTTP_GET_VARS[sumcnt];
152 $enwhere=$HTTP_GET_VARS[enwhere];
153
154 Return (Varchar $where) - 分页后检索语句的检索条件
155 注意:本函式需调用出错处理函式 nerror($error);
156 */
157
158
159 图片文件上传函式
160
161 //图片文件上传函式
162 function upload_img($UploadFile,$UploadFile_name,$UploadFile_size,$UploadPath,$max_size=64){
163
164 //$TimeLimit=60; //设置超时限制时间 缺省时间为 30秒 设置为0时为不限时
165 //set_time_limit($TimeLimit);
166 if(($UploadFile!= "none" )&&($UploadFile != "" )){
167 $FileName=$UploadPath.$UploadFile_name;
168 if($UploadFile_size <1024){
169 $FileSize="(string)$UploadFile_size" . "字节";
170 }elseif($UploadFile_size <(1024 * $max_size)){
171 $FileSize=number_format((double)($UploadFile_size / 1024), 1) . " KB";
172 }else{
173 nerror("文件超过限制大小!");
174 }
175 //{
176 //$FileSize="number_format((double)($UploadFile_size" / (1024 * 1024)), 1) . " MB";
177 // }
178 if(!file_exists($FileName)){
179 if(copy($UploadFile,$FileName)){
180 return "$UploadFile_name ($FileSize)";
181 }else{
182 nerror("文件 $UploadFile_name 上载失败!");
183 }
184 unlink($UploadFile);
185 }else{
186 nerror("文件 $UploadFile_name 已经存在!");
187 }
188 //set_time_limit(30); //恢复缺省超时设置
189 }
190 }
191 以下是一些小技巧:
192 如何判断ip地址合法性
193 if(!strcmp(long2ip(sprintf("%u",ip2long($ip))),$ip)) echo "is ipn";
194 ----
195
196 email的正则判断
197 eregi("^[_.0-9a-zA-Z-]+@([0-9a-zA-Z][0-9a-zA-Z_-]+.)+[a-zA-Z]$", $email);
198
199 检测ip地址和mask是否合法的例子
200 $ip = '192.168.0.84';
201 $mask = '255.255.255.0';
202 $network = '192.168.0';
203
204 $ip = ip2long($ip);
205 $mask = ip2long($mask);
206 $network = ip2long($network);
207
208 if( ($ip & $mask) == $network) echo "valid ip and maskn";
209 ?>
210 ----
211
212 文件下载头部输出如何设定
213 header("Content-type: application/x-download");
214 header("Content-Disposition: attachment; filename=$file_download_name;");
215 header("Accept-Ranges: bytes");
216 header("Content-Length: $download_size");
217 echo 'xxx'
218 用header输出ftp下载方式,并且支持断点续传
219 一个例子:
220 header('Pragma: public');
221 header('Cache-Control: private');
222 header('Cache-Control: no-cache, must-revalidate');
223 header('Accept-Ranges: bytes');
224 header('Connection: close');
225 header("Content-Type: audio/mpeg");
226
227 header("Location:ftp://download:1bk3l4s3k9s2@232.2.22.22/2222/web技术开发知识库/cn_web.rmvb");
228
229 正则匹配中文
230 ereg("^[".chr(0xa1)."-".chr(0xff)."]+$", $str);
231
232 批量替换文本里面的超级链接
233 <?php
234 function urlParse($str = ''){
235 if ('' == $str) return $str;
236
237 $types = array("http", "ftp", "https");
238
239 $replace = <<<EOPHP
240 '<a href="'.htmlentities('\1').htmlentities('\2').'">'.htmlentities('\1').htmlentities('\2').'</a>'
241 EOPHP;
242
243 $ret = $str;
244
245 while(list(,$type) = each($types)){
246 $ret = preg_replace("|($type://)([^\s]*)|ie ", $replace, $ret);
247 }
248
249 return $ret;
250 }
251 ?>
2 //文件读取函式
3 function PHP_Read($file_name) {
4 $fd=fopen($file_name,r);
5 while($bufline=fgets($fd, 4096)){
6 $buf.=$bufline;
7 }
8 fclose($fd);
9 return $buf;
10 }
11 ?>
12
13 文件写入函式
14
15 //文件写入函式
16 function PHP_Write($file_name,$data,$method="w") {
17 $filenum=@fopen($file_name,$method);
18 flock($filenum,LOCK_EX);
19 $file_data=fwrite($filenum,$data);
20 fclose($filenum);
21 return $file_data;
22 }
23 ?>
24
25 静态页面生成函式
26 //静态页面生成函式
27 function phptohtm($filefrom,$fileto,$u2u=1){
28 if($u2u==1){
29 $data=PHP_Read($filefrom);
30 }else{
31 $data=$filefrom;
32 }
33 PHP_Write($fileto,$data);
34 return true;
35 }
36 ?>
37
38 指定条件信息数量检索函式
39
40 //指定条件信息数量检索函式
41 function rec_exist($table,$where){
42 $query="select count(*) as num from $table ".$where;
43 $result=mysql_query($query) or die(nerror(1));
44 $rowcount=mysql_fetch_array($result);
45 $num=$rowcount["num"];
46 if ($num==0){
47 return false;
48 }
49 return $num;
50 }
51 ?>
52
53 目录删除函式
54 //目录删除函式
55 function del_DIR($directory){
56 $mydir=dir($directory);
57 while($file=$mydir->read()){
58 if((is_dir("$directory/$file")) AND ($file!=".") AND ($file!="..")){
59 del_DIR("$directory/$file");
60 }else{
61 if(($file!=".") AND ($file!="..")){
62 unlink("$directory/$file");
63 //echo "unlink $directory/$file ok ";
64 }
65 }
66 }
67 $mydir->close();
68 rmdir($directory);
69 //echo "rmdir $directory ok ";
70 }
71 ?>
72
73 目录名称合法性检测函式
74 //目录名称合法性检测
75 function isen($str){
76 $ret="";
77 for($i=0;$i $p=ord(substr($str,$i,1));
78 if(($p<48 & $p!=45 & $p!=46) || ($p>57 & $p<65) || ($p>90 & $p<97 & $p!=95) || $p>122){
79 nerror("不符合规范!");
80 }
81 $ret.=chr($p);
82 }
83 return $ret;
84 }
85 ?>
86
87 分页函式
88 //分页函式
89 function splitlist($HALT,$LRLIST,$ECHOCNT,$paper,$table,$where,$page_id,$userid){
90 global $splitstr,$sumcnt;
91 if($paper=="" || $sumcnt==""){
92 $query = "select count(*) as num from $table $where";
93 $result = mysql_query($query);
94 $row = mysql_fetch_array($result);
95 $sumcnt=$row["num"];
96 if($sumcnt==0){
97 nerror("该版内还没有选择发布新闻 !");
98 }
99 $paper=1;
100 }
101 $sumpaper=($sumcnt-$sumcnt%$ECHOCNT)/$ECHOCNT;
102 if(($sumcnt%$ECHOCNT)!=0) $sumpaper+=1;
103 if($sumpaper==1 && $HALT==0) return($where);
104 $enwhere=base64_encode(base64_encode($where));
105 if(($LRLIST*2+1) < $sumpaper){
106 if(($paper-$LRLIST) < 2){
107 $tract=1;
108 $sub=$LRLIST*2+1;
109 }else if(($paper+$LRLIST) >= $sumpaper){
110 $tract=$sumpaper-($LRLIST*2);
111 $sub=$sumpaper;
112 }else{
113 $tract=$paper-$LRLIST;
114 $sub=$paper+$LRLIST;
115 }
116 }else{
117 $tract=1;
118 $sub=$sumpaper;
119 }
120 $uppaper=$paper-1;
121 $downpaper=$paper+1;
122 $startcnt=($paper-1)*$ECHOCNT;
123 $where.=" limit ${ startcnt },${ ECHOCNT }";
124 if($tract > 1) { $splitstr="【 << "; }
125 else $splitstr="【 << ";
126 for($i=$tract;$i<=$sub;$i++){
127 if ($i!=$paper) $splitstr.="".$i." ";
128 else $splitstr.="".$i." ";
129 }
130 if ($sub!=$sumpaper) $splitstr.=">> 】";
131 else $splitstr.=">> 】";
132 return($where);
133 }
134 ?>
135
136 关于分页函式的使用说明
137 /*
138 #### 检索分页函式 ####
139 Int $HALT - 检索结果仅分1页时是否(1/0)显示页码条
140 Int $LRLIST - (页码条显示页码数-1)/2
141 Int $ECHOCNT - 检索时每页显示记录的数量
142 Int $paper - 页数,预提取:$paper=$HTTP_GET_VARS[paper];
143 Varchar $table - 数据表名,预附值:$table="db.table";
144 Varchar $where - 检索条件,预附值:$where="where field='value'";
145
146 Varchar $enwhere - 将原$where进行两次base64_encode()编码后以GET的方式提交
147 Varchar $splitstr - 页码条输出字串,执行函式后在相应的位置执行 echo $splitstr;
148
149 函式调用前需获取变量 -
150 $paper=$HTTP_GET_VARS[paper];
151 $sumcnt=$HTTP_GET_VARS[sumcnt];
152 $enwhere=$HTTP_GET_VARS[enwhere];
153
154 Return (Varchar $where) - 分页后检索语句的检索条件
155 注意:本函式需调用出错处理函式 nerror($error);
156 */
157
158
159 图片文件上传函式
160
161 //图片文件上传函式
162 function upload_img($UploadFile,$UploadFile_name,$UploadFile_size,$UploadPath,$max_size=64){
163
164 //$TimeLimit=60; //设置超时限制时间 缺省时间为 30秒 设置为0时为不限时
165 //set_time_limit($TimeLimit);
166 if(($UploadFile!= "none" )&&($UploadFile != "" )){
167 $FileName=$UploadPath.$UploadFile_name;
168 if($UploadFile_size <1024){
169 $FileSize="(string)$UploadFile_size" . "字节";
170 }elseif($UploadFile_size <(1024 * $max_size)){
171 $FileSize=number_format((double)($UploadFile_size / 1024), 1) . " KB";
172 }else{
173 nerror("文件超过限制大小!");
174 }
175 //{
176 //$FileSize="number_format((double)($UploadFile_size" / (1024 * 1024)), 1) . " MB";
177 // }
178 if(!file_exists($FileName)){
179 if(copy($UploadFile,$FileName)){
180 return "$UploadFile_name ($FileSize)";
181 }else{
182 nerror("文件 $UploadFile_name 上载失败!");
183 }
184 unlink($UploadFile);
185 }else{
186 nerror("文件 $UploadFile_name 已经存在!");
187 }
188 //set_time_limit(30); //恢复缺省超时设置
189 }
190 }
191 以下是一些小技巧:
192 如何判断ip地址合法性
193 if(!strcmp(long2ip(sprintf("%u",ip2long($ip))),$ip)) echo "is ipn";
194 ----
195
196 email的正则判断
197 eregi("^[_.0-9a-zA-Z-]+@([0-9a-zA-Z][0-9a-zA-Z_-]+.)+[a-zA-Z]$", $email);
198
199 检测ip地址和mask是否合法的例子
200 $ip = '192.168.0.84';
201 $mask = '255.255.255.0';
202 $network = '192.168.0';
203
204 $ip = ip2long($ip);
205 $mask = ip2long($mask);
206 $network = ip2long($network);
207
208 if( ($ip & $mask) == $network) echo "valid ip and maskn";
209 ?>
210 ----
211
212 文件下载头部输出如何设定
213 header("Content-type: application/x-download");
214 header("Content-Disposition: attachment; filename=$file_download_name;");
215 header("Accept-Ranges: bytes");
216 header("Content-Length: $download_size");
217 echo 'xxx'
218 用header输出ftp下载方式,并且支持断点续传
219 一个例子:
220 header('Pragma: public');
221 header('Cache-Control: private');
222 header('Cache-Control: no-cache, must-revalidate');
223 header('Accept-Ranges: bytes');
224 header('Connection: close');
225 header("Content-Type: audio/mpeg");
226
227 header("Location:ftp://download:1bk3l4s3k9s2@232.2.22.22/2222/web技术开发知识库/cn_web.rmvb");
228
229 正则匹配中文
230 ereg("^[".chr(0xa1)."-".chr(0xff)."]+$", $str);
231
232 批量替换文本里面的超级链接
233 <?php
234 function urlParse($str = ''){
235 if ('' == $str) return $str;
236
237 $types = array("http", "ftp", "https");
238
239 $replace = <<<EOPHP
240 '<a href="'.htmlentities('\1').htmlentities('\2').'">'.htmlentities('\1').htmlentities('\2').'</a>'
241 EOPHP;
242
243 $ret = $str;
244
245 while(list(,$type) = each($types)){
246 $ret = preg_replace("|($type://)([^\s]*)|ie ", $replace, $ret);
247 }
248
249 return $ret;
250 }
251 ?>