一个简单的php生成的图片验证码,带表单,验证码生成代码,以及验证程序image.php<?php header("Content-type: image/png"); $string = "abcdefghijklmnopqrstuvwxyz0123456789"; for($i=0;$i<……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1385浏览 888个赞
php汉字转换成拼音的代码类<?phpfunction Pinyin($_String, $_Code='UTF8'){ //GBK页面可改为gb2312,其他随意填写为UTF8 $_DataKey = "a|ai|an|ang|ao|ba|bai|ban|bang|bao|bei|ben|beng……继续阅读 » 水墨上仙 4年前 (2021-03-10) 3112浏览 756个赞
php计算一个文件的大小<?php function dirSize($directoty){ $dir_size=0; if($dir_handle=@opendir($directoty)) { while($filename=readdir($dir_handle)){ ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1697浏览 2161个赞
php上传图片的同时生成缩略图<?php function createThumbnail($imageDirectory, $imageName, $thumbDirectory, $thumbWidth, $quality){ $details = getimagesize("$imageDirectory/$image……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1209浏览 2016个赞
列出目录的全部子目录,存储在数组里<?php function listdir($dir){ if ($handle = opendir($dir)){ $output = array(); while (false !== ($item = readdir($handle))){ ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2426浏览 2383个赞
一个简单的php获得文件扩展名的方法,如:.php<?php $file = '/path/to/file.php'; $info = pathinfo($file); echo $info['extension']; ?>……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2572浏览 2184个赞
PHP面向对象实现数据库登陆的类代码 db_class.php类的实现代码:<?php class dbclass { public $connection ; public $result ; public $fetch_num ;……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2588浏览 2793个赞
php获取post过来的xml数据并解析 php 如何获取请求的xml数据,对方通过http协议post提交过来xml数据,php如何获取到这些数据呢?<?php $xml_data ='<AATAvailReq1>'. ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 3047浏览 1778个赞
大部分计算机软件支持的是RGB格式的颜色,但是HSL会更加人性化,下面的代码实现了rgb和hsl的相互转换def HSL_to_RGB(h,s,l): ''' Converts HSL colorspace (Hue/Saturation/Value) to RGB colorspace. Form……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1898浏览 1636个赞
Linux系统下php获得系统分区信息的代码$pars = array_filter(explode("\n",`df -h`)); foreach ($pars as $par) { if ($par{0} == '/') { $_tmp = array_values(ar……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2771浏览 976个赞
本代码演示了php中如何使用转义字符<?php print("<font color=\"red\">Red text</font>"); ?> ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1776浏览 1394个赞
当我们在接受未知客户端提交的数据,由于各客户端的编码不统一,但在我们的服务器端最终只能以一种编码方式来处理,这种情况下就会涉及到编码转换问题// 自动转换字符集 支持数组转换 function auto_charset($fContents, $from='gbk', $to='utf-8') { $from……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1326浏览 550个赞
php调用万网接口实现域名查询 今天给别人做网站时有个需求是要有域名查询功能,查了点资料写了个简单的查询功能 前台页面用的是checkbox,代码如下:<form name="form1" method="post" ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1202浏览 2849个赞
使用python打包你的整个Gmail邮箱,需要Gmail打开IMAP服务#!/usr/bin/python# -*- coding: iso-8859-1 -*-""" GMail archiver 1.1This program will download and archive all you emails f……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2748浏览 2553个赞
在PHP编程中,递归调用常常与静态变量使用。静态变量的含义可以参考PHP手册.希望下面的代码,会更有利于对递归以及静态变量的理解<?php //下面代码会画出一个很漂亮的叶子 // 定义 PI 一分的角度的值 define("PII", M_PI/180); // 新建图像资源,并定义其背景为 白色,前景色为 黑色 ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2603浏览 1295个赞
python通过urllib2发送post请求并抓取返回内容#!/usr/bin/pythonimport urllib,urllib2url = 'http://www.commentcamarche.net/search/search.php3'parameters = {'Mot' : 'G……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2290浏览 1656个赞
本代码通过查询那些提供ip地址查看的网站获取你自己的真实ip地址,如果你当前离线,则返回None范例:>>> print public_ip()85.212.182.25import urllib,random,reip_regex = re.compile("(([0-9]{1,3}\.){3}[0-9]{1,3})")def……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1328浏览 169个赞
php计算指定目录(包含子目录)的完整大小/** * Calculate the full size of a directory * * @author Jonas John * @version 0.2 * @link http://www.jonasjohn.de/snippets/php/dir-siz……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1911浏览 351个赞
一个通过break语句终止php循环的例子$max_loop=5; //This is the desired value of Looping$count = 0; //First we set the count to be zeoecho "<h2> Here goes the values</h2>&quo……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1721浏览 2466个赞
php对字符串在指定的长度范围内进行随机分割,把分割后的结果存在数组里面function RandomSplit($min, $max, $str){ $a = array(); while ($str != ''){ $p = rand($min, $max); $p = ($p……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2362浏览 638个赞
对文件夹和文件递归之行chmod命令来改变执行权限<? function recursiveChmod($path, $filePerm=0644, $dirPerm=0755) { // Check if the path exists if(!file_exists($path)) { ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2220浏览 1289个赞
自动匹配页面里的网址,包含http,ftp等,自动给网址加上链接function text2links($str='') { if($str=='' or !preg_match('/(http|www\.|@)/i', $str)) { return $str; } ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2433浏览 2640个赞
模拟post数据到其它web serverfunction post_request($url, $data, $referer='') { // Convert the data array into URL Parameters like a=b&foo=bar etc. $data = http_b……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1433浏览 676个赞
我们一般会在页面下方输出版权信息,包含年份信息,每年都要修改,这段简单的代码帮你解决这个问题,自动更新年份function autoUpdatingCopyright($startYear){ // given start year (e.g. 2004) $startYear = intval($startYear); ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1673浏览 208个赞
一段自定义的php生成uuid的代码<?php$u=uuid(); // 0001-7f000001-478c8000-4801-47242987echo $u;echo "<br>";print_r(uuidDecode($u)); // Array ( [serverID] => 0001 [……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2773浏览 2166个赞
php通过joomla jmail 类使用 gmail smtp 账号发送邮件<?phpjimport('joomla.mail.mail');$mail = new JMail();$mail->setsender("useremail");$mail->addRecipient(&q……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1275浏览 1351个赞
php上传单个文件到ftp服务器的演示范例// FTP access parameters$host = 'ftp.example.org';$usr = 'example_user';$pwd = 'example_password'; // file to move:$loca……继续阅读 » 水墨上仙 4年前 (2021-03-10) 3013浏览 925个赞
有时候网站的www域名和非www域名都能访问网站,但是这样不利于搜索引擎的收录,会分散网页的权重,所以希望用户访问非www的域名时通过301永久重定向到www域名,例如用户访问75271.com会直接转向www.75271.com,本php代码考虑了无法通过head重定向的情况,会在页面上输出链接,让用户点击。// Install info.:// ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1935浏览 1475个赞
php正则表达式功能强大,本范例演示了preg_replace_callback函数的用法// Define a dummy text, for testing...$Text = "Title: Hello world!\n";$Text .= "Author: Jonas\n";$Text .= &q……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2572浏览 2979个赞
本代码演示了php中header函数的详细用法// See related links for more status codes // Use this header instruction to fix 404 headers// produced by url rewriting...header('HTTP/1.1 200 O……继续阅读 » 水墨上仙 4年前 (2021-03-10) 3137浏览 2074个赞
php通过查询whois信息的网站列表进行查询function whois_query($domain) { // fix the domain name: $domain = strtolower(trim($domain)); $domain = preg_replace('/^http:\/\//i'……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2108浏览 431个赞
php获得指定范围内的最接近的数// Returns the next higher or lower numberfunction NextRelatedNumber($number, $range){ $r = $number % $range; $f = $number - $r; $b = round($r /……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1777浏览 2171个赞
php链接mysql数据库,查询范例/*** Connect to database:*/ // connect to the database$con = mysql_connect('localhost','testuser','testpassword') or di……继续阅读 » 水墨上仙 4年前 (2021-03-10) 3039浏览 1923个赞
php使用GD创建保持宽高比的缩略图/** * Create a thumbnail image from $inputFileName no taller or wider than * $maxSize. Returns the new image resource or false on error. * Auth……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1190浏览 1586个赞
本代码传入两个数组A和B,返回A-B的结果,即挑选出存在于A,但不存在于B的元素<?php function RestaDeArrays($vectorA,$vectorB) { $cantA=count($vectorA); $cantB=count($vectorB); ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2381浏览 2769个赞
传入用户提交的参数时使用这段代码提供的函数先对参数进行处理,然后传入sql语句,用:mysqlquery(“INSERT INTO table VALUES(‘” . sqlsanitize($_POST[“variable”) . “‘)”);替代:mysqlq……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1312浏览 1900个赞
php递归遍历删除文件,这个函数稍加修改就可以变成一个递归文件拷贝函数<? function mover($src,$dst) { $handle=opendir($src); // Opens source dir. if (!is_dir($dst)) mkdir($dst,0755); ……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1715浏览 1219个赞
php阿拉伯数字和罗马数字相互转换<?php // Function that calculates the roman string to the given number: function dec2roman($f) { // Return false if eithe……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2096浏览 1507个赞
php将任意进制的数转换成10进制,例如8进制转换成10进制,16进制转换成10进制<?php # Show the steps involved in converting a number # from any base (like octal or hex) to base 10 # See below for examples,……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2202浏览 1039个赞
给定一个字符串和排列组合长度生成所有可能的排列组合<? function permutations($letters,$num){ $last = str_repeat($letters{0},$num); $result = array(); while($last != str_repeat(lastchar(……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2456浏览 1167个赞
php关联数组快速排序<? function qsort($a,$f) { qsort_do(&$a,0,Count($a)-1,$f); } function qsort_do($a,$l,$r,$f) { if ($l < $r) { qsort_partit……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2058浏览 807个赞
一个用来防止sql注入的参数检查函数function cleanuserinput($dirty){ if (get_magic_quotes_gpc()) { $clean = mysql_real_escape_string(stripslashes($dirty)); }else{ $clean = mysql_real_esca……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2048浏览 1549个赞
php中通过 func_num_args函数获取当前函数的参数数量,传入指定函数的参数数量可以是不固定的,通过func_num_args可以轻松获得参数个数function variable_argument_function () { $num_args = func_num_args(); echo ("I was passed $……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1454浏览 659个赞
php中输出大数据文本的方法ob_start(); echo 'Put your text here'; $body = ob_get_contents();ob_end_clean(); echo $body;……继续阅读 » 水墨上仙 4年前 (2021-03-10) 2166浏览 1254个赞
func_get_args php中用于返回指定函数的参数数量的函数,如果你想得到某个函数的参数个数的话,这个一定能帮到你。<?phpfunction foo(){ $numargs = func_num_args(); echo "Number of arguments: $numargs<br />\n……继续阅读 » 水墨上仙 4年前 (2021-03-10) 1600浏览 2997个赞