6个超实用的PHP代码片段
一、黑名单过滤= $arr[$word])
return true;
}
}
return false;
}
$file = 'spam.txt'; ab:3 二、随机颜色生成器三、从网上下载文件// create a new cURL resource
$ch = curl_init(); // set URL and other appropriate options // grab URL and pass it to the browser // close cURL resource,and free up system resources $saveFile = $name.'.'.$ext; $handle = fopen($saveFile,'wb'); 四、强制下载文件 0){
$row = mysql_fetch_array($sql);
// Set some headers
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate,post-check=0,pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment; filename=".basename($row['FileName']).";");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($row['FileName']));
@readfile($row['FileName']); 五、截取图片$src_x = '0'; // begin x
$src_y = '0'; // begin y $src_w = '100'; // width $src_h = '100'; // height $dst_x = '0'; // destination x $dst_y = '0'; // destination y $dst_im = imagecreatetruecolor($src_w,$src_h); imagecopy($dst_im,$src_im,$dst_x,$dst_y,$src_x,$src_y,$src_w,$src_h); header("Content-type: image/png"); 六、检查网站是否宕机=200 && $httpcode<300) return true;
else return false;
}
if (Visit("http://www.google.com"))
echo "Website OK"."n";
else
echo "Website DOWN";
以上就是6个超实用的PHP代码样例,希望对大家学习PHP编程有所帮助,果断收藏吧 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |