php 948

#PHP
PHP 片段即时压缩 zip 文件

使用下面的 PHP 片段可以即时压缩 zip 文件 function create_zip($files = array(),$destination = '',$overwrit…

2015-08-09 999

#PHP
PHP强制性文件下载

如果你需要下载特定的文件而不用另开新窗口,下面的代码片段可以帮助你。 function force_download($file) { $dir = "../log/ex…

2015-08-09 372

#PHP
PHP阻止多个 IP 访问你的网站

这个代码片段可以方便你禁止某些特定的 IP 地址访问你的网站 if ( !file_exists('blocked_ips.txt') ) { $deny_ips = array(…

2015-08-09 867

#PHP
php给图片加文字水印

<?php /*给图片加文字水印的方法*/ $dst_path = 'http://xxx.jpg'; $dst = imagecreatefromstring(file_g…

2015-08-09 923

#PHP
PHP获取用户的真实 IP

function getRealIpAddr() { if (!emptyempty($_SERVER['HTTP_CLIENT_IP'])) { $ip=$_SERVER['HT…

2015-08-09 721

#PHP
PHP数字运算验证码

<?php getValidate(100,30); function getValidate($w,$h){ $img = imagecreate($w,$h); $gra…

2015-08-09 832

#PHP
验证邮箱地址是否有效的PHP代码

有时候,当在网站填写表单,用户可能会输入错误的邮箱地址,这个函数可以验证邮箱地址是否有效。 function is_validemail($email) { $check = 0;…

2015-08-09 151

#PHP
使用使用 imagebrick将pdf转成图片

<?php $pdf_file = './pdf/demo.pdf'; $save_to = './jpg/demo.jpg'; //make sure that apach…

2015-08-09 562

#PHP
whois 查询的PHP代码

使用下面的函数可以获取任何域名用户的完整细节 function whois_query($domain) { // fix the domain name: $domain = s…

2015-08-09 524

#PHP
PHP把文本转换成图片

<?php header("Content-type: image/png"); $string = $_GET['text']; $im = image…

2015-08-09 892

#PHP
PHP提取任意图片的主颜色

function dominant_color($image) { $i = imagecreatefromjpeg($image); for ($x=0;$x<images…

2015-08-09 748

#PHP
PHP获取远程文件的大小

function remote_filesize($url, $user = "", $pw = "") { ob_start(); $ch…

2015-08-09 481
1 22 23 24 25 26 79