这段php代码通过foreach语句遍历数组,当遍历到数组元素值等于3时跳过循环体后面的语句,继续执行下一次循环<html><body><?php$array = array( 1, 2, 3, 4, 5);foreach( $array as $value ){ if( $value == 3 )conti……继续阅读 » 5年前 (2021-03-10) 1336浏览 1540个赞
php中可以通过$_PHP_SELF变量表示当前页面,下面的代码通过将表单的action设置为$_PHP_SELF变量将表单信息提交到当前页面<?php if( $_POST["name"] || $_POST["age"] ) { echo "Welcome ". $……继续阅读 » 5年前 (2021-03-10) 1905浏览 2340个赞
这段php代码定义了一个二维数组用于存储学生的学科成绩,代码演示了如何定义和使用二维数组<html><body><?php $marks = array( "mohammad" => array ( "physics" => 35, ……继续阅读 » 5年前 (2021-03-10) 2854浏览 305个赞
php通过GET方式提交表单演示,$_PHP_SELF表示当前页面,php中通过$_GET变量获得用户提交的信息<?php if( $_GET["name"] || $_GET["age"] ) { echo "Welcome ". $_GET['name&……继续阅读 » 5年前 (2021-03-10) 1837浏览 1283个赞
php返回当前日期或者指定日期是星期几 PHP星期几获取代码:date("l"); //data就可以获取英文的星期比如Sundaydate("w"); //这个可以获取数字星期比如123,注意0是星期日 ……继续阅读 » 5年前 (2021-03-10) 2715浏览 2692个赞
php检测客户端浏览器类型代码<html><body><?php $viewer = getenv( "HTTP_USER_AGENT" ); $browser = "An unidentified browser"; if( preg_match( "……继续阅读 » 5年前 (2021-03-10) 3143浏览 1853个赞
php提交表单后页面重定向代码,这段代码提交表单到当前页面,提交后通过设置header进行页面重定向,exit()函数可以让代码强行退出不执行后面的代码<?php if( $_POST["location"] ) { $location = $_POST["location"]; ……继续阅读 » 5年前 (2021-03-10) 3117浏览 103个赞
这段php代码通过两种不同的方式创建php数组,并通过foreach语句分别遍历两个数组输出<html><body><?php/* First method to create array. */$numbers = array( 1, 2, 3, 4, 5);foreach( $numbers as $valu……继续阅读 » 5年前 (2021-03-10) 2718浏览 1302个赞
php通过rand()函数产生随机数,这个函数可以产生一个指定范围的数字这段代码通过产生的随机数,随机选择图片<html><body><?php srand( microtime() * 1000000 ); $num = rand( 1, 4 ); switch( $num ) { c……继续阅读 » 5年前 (2021-03-10) 3073浏览 1284个赞
这段php代码通过do while语句对变量$i进行累加<html><body><?php$i = 0;$num = 0;do{ $i++;}while( $i < 10 );echo ("Loop stopped at i = $i" );?></body&g……继续阅读 » 5年前 (2021-03-10) 1913浏览 1634个赞
php根据生日计算年龄<?php function birthday($birthday){ $age = strtotime($birthday); if($age === false){ return false; } list($y1,$m1,$d1) = explode(&quo……继续阅读 » 5年前 (2021-03-10) 1865浏览 1022个赞
本代码根据定义好的php数组动态生成一个html的下拉列表(select)<?php //Array contents array 1 :: value $myArray1 = array('Cat','Mat','Fat','Hat'); //Array co……继续阅读 » 5年前 (2021-03-10) 2737浏览 941个赞
此代码会从指定的服务器文件夹随机选择一个图片进行显示,非常有用,图片格式为.gif,.jpg,.png<?php //This will get an array of all the gif, jpg and png images in a folder $img_array = glob("/path/to/images/*.{……继续阅读 » 5年前 (2021-03-10) 3154浏览 931个赞
本代码可以根据用户输入的英文姓名,分析出姓名的首字母输出,比如”Billy Bob” to “B.B.”<?php function initials($name){ $nword = explode(" ",$name); foreach($nword a……继续阅读 » 5年前 (2021-03-10) 2069浏览 1279个赞
这是一个经常用到的功能,如果字符串太长,需要按照指定的长度进行截断,然后在后面加上三个点的省略号<?php //if a string is longer than the defined length, //it will add 3 periods to the end of the string. //you can change ……继续阅读 » 5年前 (2021-03-10) 2802浏览 2483个赞
一个简单的php生成的图片验证码,带表单,验证码生成代码,以及验证程序image.php<?php header("Content-type: image/png"); $string = "abcdefghijklmnopqrstuvwxyz0123456789"; for($i=0;$i<……继续阅读 » 5年前 (2021-03-10) 1561浏览 1456个赞
php汉字转换成拼音的代码类<?phpfunction Pinyin($_String, $_Code='UTF8'){ //GBK页面可改为gb2312,其他随意填写为UTF8 $_DataKey = "a|ai|an|ang|ao|ba|bai|ban|bang|bao|bei|ben|beng……继续阅读 » 5年前 (2021-03-10) 1464浏览 336个赞
php计算一个文件的大小<?php function dirSize($directoty){ $dir_size=0; if($dir_handle=@opendir($directoty)) { while($filename=readdir($dir_handle)){ ……继续阅读 » 5年前 (2021-03-10) 1630浏览 1570个赞
php上传图片的同时生成缩略图<?php function createThumbnail($imageDirectory, $imageName, $thumbDirectory, $thumbWidth, $quality){ $details = getimagesize("$imageDirectory/$image……继续阅读 » 5年前 (2021-03-10) 2513浏览 2882个赞
列出目录的全部子目录,存储在数组里<?php function listdir($dir){ if ($handle = opendir($dir)){ $output = array(); while (false !== ($item = readdir($handle))){ ……继续阅读 » 5年前 (2021-03-10) 2433浏览 885个赞
一个简单的php获得文件扩展名的方法,如:.php<?php $file = '/path/to/file.php'; $info = pathinfo($file); echo $info['extension']; ?>……继续阅读 » 5年前 (2021-03-10) 2295浏览 1565个赞
PHP面向对象实现数据库登陆的类代码 db_class.php类的实现代码:<?php class dbclass { public $connection ; public $result ; public $fetch_num ;……继续阅读 » 5年前 (2021-03-10) 1338浏览 166个赞
php获取post过来的xml数据并解析 php 如何获取请求的xml数据,对方通过http协议post提交过来xml数据,php如何获取到这些数据呢?<?php $xml_data ='<AATAvailReq1>'. ……继续阅读 » 5年前 (2021-03-10) 1887浏览 742个赞
大部分计算机软件支持的是RGB格式的颜色,但是HSL会更加人性化,下面的代码实现了rgb和hsl的相互转换def HSL_to_RGB(h,s,l): ''' Converts HSL colorspace (Hue/Saturation/Value) to RGB colorspace. Form……继续阅读 » 5年前 (2021-03-10) 2411浏览 2181个赞
Linux系统下php获得系统分区信息的代码$pars = array_filter(explode("\n",`df -h`)); foreach ($pars as $par) { if ($par{0} == '/') { $_tmp = array_values(ar……继续阅读 » 5年前 (2021-03-10) 2591浏览 2225个赞
本代码演示了php中如何使用转义字符<?php print("<font color=\"red\">Red text</font>"); ?> ……继续阅读 » 5年前 (2021-03-10) 2860浏览 1908个赞
当我们在接受未知客户端提交的数据,由于各客户端的编码不统一,但在我们的服务器端最终只能以一种编码方式来处理,这种情况下就会涉及到编码转换问题// 自动转换字符集 支持数组转换 function auto_charset($fContents, $from='gbk', $to='utf-8') { $from……继续阅读 » 5年前 (2021-03-10) 1788浏览 1761个赞
php调用万网接口实现域名查询 今天给别人做网站时有个需求是要有域名查询功能,查了点资料写了个简单的查询功能 前台页面用的是checkbox,代码如下:<form name="form1" method="post" ……继续阅读 » 5年前 (2021-03-10) 1670浏览 634个赞
使用python打包你的整个Gmail邮箱,需要Gmail打开IMAP服务#!/usr/bin/python# -*- coding: iso-8859-1 -*-""" GMail archiver 1.1This program will download and archive all you emails f……继续阅读 » 5年前 (2021-03-10) 2623浏览 794个赞
在PHP编程中,递归调用常常与静态变量使用。静态变量的含义可以参考PHP手册.希望下面的代码,会更有利于对递归以及静态变量的理解<?php //下面代码会画出一个很漂亮的叶子 // 定义 PI 一分的角度的值 define("PII", M_PI/180); // 新建图像资源,并定义其背景为 白色,前景色为 黑色 ……继续阅读 » 5年前 (2021-03-10) 1796浏览 544个赞
python通过urllib2发送post请求并抓取返回内容#!/usr/bin/pythonimport urllib,urllib2url = 'http://www.commentcamarche.net/search/search.php3'parameters = {'Mot' : 'G……继续阅读 » 5年前 (2021-03-10) 2625浏览 1855个赞
本代码通过查询那些提供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……继续阅读 » 5年前 (2021-03-10) 3175浏览 246个赞
php计算指定目录(包含子目录)的完整大小/** * Calculate the full size of a directory * * @author Jonas John * @version 0.2 * @link http://www.jonasjohn.de/snippets/php/dir-siz……继续阅读 » 5年前 (2021-03-10) 1957浏览 1226个赞
一个通过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……继续阅读 » 5年前 (2021-03-10) 1769浏览 2747个赞
php对字符串在指定的长度范围内进行随机分割,把分割后的结果存在数组里面function RandomSplit($min, $max, $str){ $a = array(); while ($str != ''){ $p = rand($min, $max); $p = ($p……继续阅读 » 5年前 (2021-03-10) 1811浏览 1500个赞
对文件夹和文件递归之行chmod命令来改变执行权限<? function recursiveChmod($path, $filePerm=0644, $dirPerm=0755) { // Check if the path exists if(!file_exists($path)) { ……继续阅读 » 5年前 (2021-03-10) 3101浏览 222个赞
自动匹配页面里的网址,包含http,ftp等,自动给网址加上链接function text2links($str='') { if($str=='' or !preg_match('/(http|www\.|@)/i', $str)) { return $str; } ……继续阅读 » 5年前 (2021-03-10) 3002浏览 1808个赞
模拟post数据到其它web serverfunction post_request($url, $data, $referer='') { // Convert the data array into URL Parameters like a=b&foo=bar etc. $data = http_b……继续阅读 » 5年前 (2021-03-10) 2390浏览 780个赞
我们一般会在页面下方输出版权信息,包含年份信息,每年都要修改,这段简单的代码帮你解决这个问题,自动更新年份function autoUpdatingCopyright($startYear){ // given start year (e.g. 2004) $startYear = intval($startYear); ……继续阅读 » 5年前 (2021-03-10) 2679浏览 2535个赞
一段自定义的php生成uuid的代码<?php$u=uuid(); // 0001-7f000001-478c8000-4801-47242987echo $u;echo "<br>";print_r(uuidDecode($u)); // Array ( [serverID] => 0001 [……继续阅读 » 5年前 (2021-03-10) 2795浏览 1272个赞
php通过joomla jmail 类使用 gmail smtp 账号发送邮件<?phpjimport('joomla.mail.mail');$mail = new JMail();$mail->setsender("useremail");$mail->addRecipient(&q……继续阅读 » 5年前 (2021-03-10) 1476浏览 1273个赞
php上传单个文件到ftp服务器的演示范例// FTP access parameters$host = 'ftp.example.org';$usr = 'example_user';$pwd = 'example_password'; // file to move:$loca……继续阅读 » 5年前 (2021-03-10) 2197浏览 2373个赞
有时候网站的www域名和非www域名都能访问网站,但是这样不利于搜索引擎的收录,会分散网页的权重,所以希望用户访问非www的域名时通过301永久重定向到www域名,例如用户访问75271.com会直接转向www.75271.com,本php代码考虑了无法通过head重定向的情况,会在页面上输出链接,让用户点击。// Install info.:// ……继续阅读 » 5年前 (2021-03-10) 3198浏览 2122个赞
php正则表达式功能强大,本范例演示了preg_replace_callback函数的用法// Define a dummy text, for testing...$Text = "Title: Hello world!\n";$Text .= "Author: Jonas\n";$Text .= &q……继续阅读 » 5年前 (2021-03-10) 2383浏览 217个赞
本代码演示了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……继续阅读 » 5年前 (2021-03-10) 2016浏览 145个赞