$_SERVER[‘HTTP_REFERER’]获取来访页面的地址$referer = $_SERVER['HTTP_REFERER']……继续阅读 » 4年前 (2021-01-15) 3282浏览 0评论2804个赞
Below is a MD5-based block cipher (MDC-like), which works in 128bit CFB mode.It is very useful to encrypt secret data before transfer it over the network.function md5_encrypt($p……继续阅读 » 4年前 (2021-01-15) 3118浏览 0评论1359个赞
PHP中的 flock 文件锁使用代码 flock (PHP 4, PHP 5) flock — 轻便的咨询文件锁定 说明&nb……继续阅读 » 4年前 (2021-01-15) 1785浏览 0评论1663个赞
给定字符串,开始字符和结束字符获取中间的字符串function GetBetween($content,$start,$end){ $r = explode($start, $content); if (isset($r[1])){ $r = explode($end, $r[1]); return $r……继续阅读 » 4年前 (2021-01-15) 1517浏览 0评论1790个赞
本代码演示了php中如何使用DomXML扩展// example HTML code: (could also come from an URL)$html = '<html><head><title>links</title></head><body><……继续阅读 » 4年前 (2021-01-15) 1155浏览 0评论1414个赞
本代码演示了php如何获取Exif图片的缩略图// file to read$file = 'test.jpg'; $image = exif_thumbnail($file, $width, $height, $type); // width, height and type get filled with data/……继续阅读 » 4年前 (2021-01-15) 2703浏览 0评论2207个赞
php检查用户否等已经登录的代码,通过Session判断functions.php<?php function loggedIn(){ //Session logged is set if the user is logged in //set it on 1 if the user has successfully lo……继续阅读 » 4年前 (2021-01-15) 1233浏览 0评论975个赞
php插入数组但不影响原有顺序function array_intsort($array,$num) { $array_right = $array_left = array(); $length = count($array); if ($num < $array[0]) { array_uns……继续阅读 » 4年前 (2021-01-15) 1154浏览 0评论1940个赞
php随机字符生成代码,可以指定长度<?php # This particular code will generate a random string # that is 25 charicters long 25 comes from the number # that is in the for loop $string = &qu……继续阅读 » 4年前 (2021-01-15) 2408浏览 0评论449个赞
php剪切图片并给图片打上水印的代码此程序转自www.enterdesk.com回车桌面网络图片处理程序$wh=getimagesize($filename);$w=$wh[0];$h=$wh[1];$fenbianlv=$_REQUEST['tfbl'];if(preg_match("~(\d+)x(\d+)~&……继续阅读 » 4年前 (2021-01-15) 2260浏览 0评论2015个赞
一个标准的php链接mysql数据库的代码,并提供简单的查询范例<?php //create db connection $connection = mysql_connect("localhost", "user", "password"); if(!$connection) ……继续阅读 » 4年前 (2021-01-15) 2529浏览 0评论2720个赞
一个简单的php校验邮箱的代码<?php if(isset($_POST['email'])){ $email = $_POST['email']; if(filter_var($email, FILTER_VALIDATE_EMAIL)){ echo '&……继续阅读 » 4年前 (2021-01-15) 2684浏览 0评论970个赞
php从N个数中找出最大的10个数代码题目:从N个数中选取最大的前10个, 有序输出.N最大可能达到1000亿每个数范围是0 – 2147483647author: goosman.leimail: lgg860911@yahoo.com.cnblog: ……继续阅读 » 4年前 (2021-01-15) 2151浏览 0评论1767个赞
php转换jpg图片为ASCII码<html> <head> <title>Ascii</title> <style> body{ line-height:1px; font-size:1px; } </style> </h……继续阅读 » 4年前 (2021-01-15) 2053浏览 0评论2437个赞
给数字后面添加 “th, st, nd, rd, th” 等符号. 例如: 10 to 10th.<?php function ordinal($cdnl){ $test_c = abs($cdnl) % 10; $ext = ((abs($cdnl) %100 < 21 && ……继续阅读 » 4年前 (2021-01-15) 2697浏览 0评论539个赞
php读取,编辑和保存文件代码save_file.php<?php session_start(); $handle = fopen($_POST['original_file_name'], "w"); $text = $_POST['file_contents']; if……继续阅读 » 4年前 (2021-01-15) 1382浏览 0评论2276个赞
This new updated ASCII converter supports alpha channels, so for this code to work you need a browser that supports CSS3 Aplah Channels. Convert any GD supported image into ASCII a……继续阅读 » 4年前 (2021-01-15) 3141浏览 0评论2020个赞
本代码演示了如果不通过表单把信息直接提交到post信息里,非常有用form.html<form action="show.php" method="post"> Enter Your Name: <input type="text" name="myNam……继续阅读 » 4年前 (2021-01-15) 2463浏览 0评论1753个赞
php统计字符串单词数量<?php function word_count($sentence){ $array = explode(" ", $sentence); return count($array); } $words = word_count(&qu……继续阅读 » 4年前 (2021-01-15) 1783浏览 0评论1696个赞
英尺,英里,和英寸转换器php代码<?php function distance($curlen,$type,$totype,$on){ //Check to see if the first value is an interger if(!is_int($curlen)){ return 'W……继续阅读 » 4年前 (2021-01-15) 1485浏览 0评论401个赞
本代码演示了如果通过用户正在访问的页面获取用户的ip地址,第一段代码直接获得用户的ip地址,第二段代码可以穿过代理服务器获得用户的真实ip地址?php/* Source: http://www.apphp.com/index.php?snippet=php-get-remote-ip-address */function getRemoteIPAd……继续阅读 » 4年前 (2021-01-15) 2414浏览 0评论596个赞
php从指定的目录随机读取文件的函数,参数可以设定文件过滤function RandomFile($folder='', $extensions='.*'){ // fix path: $folder = trim($folder); $folder = ($folder == ……继续阅读 » 4年前 (2021-01-15) 3025浏览 0评论225个赞
本代码演示了php中如果通过Snoopy抓取网页信息snoopy类的下载地址:http://sourceforge.net/projects/snoopy//*You need the snoopy.class.php from http://snoopy.sourceforge.net/*/ include("snoopy.cla……继续阅读 » 4年前 (2021-01-15) 2402浏览 0评论241个赞
php调用随机函数生成随机颜色的方法<?php function randColor(){ $letters = "1234567890ABCDEF"; for($i=1;$i<6;$i++){ $pos = rand(0,16); ……继续阅读 » 4年前 (2021-01-15) 2836浏览 0评论2927个赞
php实现的简单登陆程序,带html代码和登录验证程序html代码:<form action="verify.php" method="post"> User Name:<br> <input type="text" name="use……继续阅读 » 4年前 (2021-01-15) 1528浏览 0评论562个赞
美国的州简写和标题对应数组,例如 AK 转换成Alaska<?php $state_list = array( 'AL'=>"Alabama", 'AK'=>"Alaska", 'AZ'=>&q……继续阅读 » 4年前 (2021-01-15) 2348浏览 0评论1582个赞
一个简单的php之分页类代码转自:http://blog.csdn.net/jek803/article/details/8438479/*思路1.把地址栏的URL获取2.分析URL中的query部分--就是?后面传参数的部分3.query部分分析成数组4.把数组中的page单元,+1,-1,形成2个新的数组5.再把新数组拼接成query部……继续阅读 » 4年前 (2021-01-15) 2029浏览 0评论189个赞
想知道你是哪个星座的吗,这段代码只需要你输入生日,即可显示所在星座<?php function zodiac($DOB){ $DOB = date("m-d", strtotime($DOB)); list($month,$day) = explode("-",$DOB); ……继续阅读 » 4年前 (2021-01-15) 2095浏览 0评论2949个赞
项目中经常会用到年份选择,这段代码自动生成从今年开始的过去100年的下拉列表<select name="year"><?php $years = range(date("Y"), date("Y", strtotime("now - 100 years"……继续阅读 » 4年前 (2021-01-15) 1488浏览 0评论1314个赞
这段代码计算两个字符串的长度,然后计算其差值<?php // This will return a number of how many more characters the longest string has function str_compare_length($str1, $str2){ $len1 = strlen($……继续阅读 » 4年前 (2021-01-15) 2562浏览 0评论2847个赞
php实现的一个税率计算函数<?php function tax($total,$tax_amount){ $tax_rate = $tax_amount * .01; $tax = $total * $tax_rate; return $value = $tax + $total; } $price = 50……继续阅读 » 4年前 (2021-01-15) 2296浏览 0评论1889个赞
php5连接Sql Server的两种方法演示代码 1.Com链接,ADODB.Connection $conn = new Com("ADODB.Connection"); //实例化一个Connection对象 $connstr = &q……继续阅读 » 4年前 (2021-01-15) 1689浏览 0评论766个赞
php把数组的值转换成键Converts the values of an array to the keys of it.function values2keys($arr, $value=1){ $new = array(); while (list($k,$v) = each($arr)){ $v = trim($……继续阅读 » 4年前 (2021-01-15) 3054浏览 0评论2321个赞
本代码演示了php中如何使用array_work格式化数组// the test array $array = array( 'php', 'arrays', 'are', 'cool' ); // some variable for testing:……继续阅读 » 4年前 (2021-01-15) 2066浏览 0评论1351个赞
在php计算字符串相似度similar_text与相似度levenshtein函数的详细介绍 similar_text — 计算两个字符串的相似度 int similar_text (&……继续阅读 » 4年前 (2021-01-15) 2566浏览 0评论1916个赞
php利用数组实现无限极类别层次/*** 创建父节点树形数组* 参数* $ar 数组,邻接列表方式组织的数据* $id 数组中作为主键的下标或关联键名* $pid 数组中作为父键的下标或关联键名* 返回 多维数组**/function find_parent($ar, $id='id', $pid='pid……继续阅读 » 4年前 (2021-01-15) 2213浏览 0评论382个赞
简单的条件判断语句练习,判断两个字符串是否完全一样<?php function strcomp($str1,$str2){ if($str1 == $str2){ return TRUE; }else{ return FALSE; } } echo strcomp("……继续阅读 » 4年前 (2021-01-15) 2030浏览 0评论2788个赞
本代码演示了php如何连接到mysql数据库<?php if(basename(__FILE__) == basename($_SERVER['PHP_SELF'])) send_404(); $dbHost = "localhost"; //Location Of Database us……继续阅读 » 4年前 (2021-01-15) 2830浏览 0评论641个赞
本代码演示了php中如果通过cookie存储用户的选择,更换皮肤样式表saveStyleSheet.php<?php function styleSheet($currentCookie){ # Get Current Style Sheet $currentCookie = $_COOKIE["StyleShe……继续阅读 » 4年前 (2021-01-15) 2770浏览 0评论802个赞
php控制下载速度// local file that should be send to the client$local_file = 'test-file.zip';// filename that the user gets as default$download_file = 'your-download-……继续阅读 » 4年前 (2021-01-15) 1851浏览 0评论1865个赞
PHP读取sphinx实例转自:http://yzswyl.cn/blread-1611.html 1.未采用mysql二进制网络协议的代码://检查sphinx是否能连接,不能重试两次,能则连接,不用mysql协议,仅供参考function checkSphinxNoMysql……继续阅读 » 4年前 (2021-01-15) 2145浏览 0评论445个赞
C语言对字符串进行转义excape操作/** *@brief 对于url中的一些特殊字符会被转义以利传输, * 并且, 归档服务器上, php写入cookie中的值可能存在特殊字符, 需要转换 * *参考: http://www.blooberry.com/indexdot/html/topics/urlencodi……继续阅读 » 4年前 (2021-01-15) 2486浏览 0评论2417个赞
php统计多维数组元素个数$numb=array( array(10,15,30),array(10,15,30),array(10,15,30)); echo count($numb,1); 输出结果为:12count函数中如果mode被设置为&……继续阅读 » 4年前 (2021-01-15) 1650浏览 0评论744个赞
一段简单的php代码抓取百度热词/*** 获取百度热词* @author tarylei* @ encoding GBK* @link weibo.com/4699640* @ from http://top.baidu.com/rss_xml.php?p=top10* @ return array 返回百度24小时内热词*/funct……继续阅读 » 4年前 (2021-01-15) 3120浏览 0评论2105个赞
Android通过HttpClient执行Http Post请求public void postData() { // Create a new HttpClient and Post Header HttpClient httpclient = new DefaultHttpClient(); HttpPost httppo……继续阅读 » 4年前 (2021-01-15) 2370浏览 0评论1362个赞