PHP开发中常用的十个代码样例

时间:2024-01-09 01:14:53
【文件属性】:

文件名称:PHP开发中常用的十个代码样例

文件大小:50KB

文件格式:PDF

更新时间:2024-01-09 01:14:53

样例

一、黑名单过滤 function is_spam($text, $file, $split = ‘:‘, $regex = false){ $handle = fopen($file, ‘rb‘); $contents = fread($handle, filesize($file)); fclose($handle); $lines = explode("n", $contents); $arr = array(); foreach($lines as $line){ list($word, $count) = explode($split, $line); if($regex) $arr


网友评论