php递归遍历多维数组<? # A recursive function to traverse a multi-dimensional array # where the dimensions are not known # function get_array_elems($arrResult, $where="ar……继续阅读 » 4年前 (2021-03-22) 1969浏览 2271个赞
php不透露实际地址的文件下载function download_document($filename, $path = "", $mimetype = "application/octet-stream"){ header("Cache-Control: must-revalidate, post……继续阅读 » 4年前 (2021-03-22) 1705浏览 443个赞
这段代码用于提供下载,不是用来下载别人网站的内容的<?php $filename = $_GET['filename']; // Modify this line to indicate the location of the files you want people to be able to download/……继续阅读 » 4年前 (2021-03-22) 1472浏览 1419个赞
php获得一个mysql数据查询结果if (!function_exists('mysql_fetch_results')) { function mysql_fetch_results($resource, $results = Array()) { while($row = @mysql_fetch_a……继续阅读 » 4年前 (2021-03-22) 2155浏览 1587个赞
php列出mysql指定数据库中的所有表if (!function_exists('mysql_list_db_tables')) { function mysql_list_db_tables($database) { $tables = Array(); $results = mysql……继续阅读 » 4年前 (2021-03-22) 2764浏览 528个赞
php列出mysql中可用数据库的名字if (!function_exists('mysql_list_databases')) { function mysql_list_databases($resources = Array()) { $list = Array(); for ($i ……继续阅读 » 4年前 (2021-03-22) 2887浏览 545个赞
php读取数据库生成一条一条的sql语句,可以用作mysql的备份if (!function_exists('mysql_dump')) { function mysql_dump($database) { $query = ''; $tables = @mysql_li……继续阅读 » 4年前 (2021-03-22) 2896浏览 365个赞
php5已经包含了file_pub_contents函数,这个可以用在php4中if (!function_exists('file_put_contents')) { function file_put_contents($file, $contents = '', $method = 'a……继续阅读 » 4年前 (2021-03-22) 1666浏览 240个赞
php正则表达式验证邮件地址$string = "first.last@domain.co.uk"; if (preg_match('/^[^\W][a-zA-Z0-9_]+(\.[a-zA-Z0-9_]+)*\@[a-zA-Z0-9_]+(\.[a-zA-Z0-9_]+)*\.[a-zA-Z]{2,4}$/'……继续阅读 » 4年前 (2021-03-22) 1798浏览 2094个赞
这段代码演示了php中如果打包文件为zip格式function create_zip($files = array(),$destination = '',$overwrite = false) { //if the zip file already exists and overwrite is false, return fa……继续阅读 » 4年前 (2021-03-22) 1947浏览 2136个赞
php到处mysql数据到excel文件<?php // DB TABLE Exporter//// How to use://// Place this file in a safe place, edit the info just below here// browse to the file, enjoy! // CHA……继续阅读 » 4年前 (2021-03-22) 2280浏览 1204个赞
这段代码演示了php中如何发送html格式的邮件/*EXAMPLE: htmlmail('user@domain.com', 'Look ma, HTML e-mails','You just got <a href="http://www.yougotrickrolled.com/&……继续阅读 » 4年前 (2021-03-22) 1935浏览 2070个赞
这段代码通过各种手段来检测用户终端是否是移动设备function mobile_device_detect($iphone=true,$ipad=true,$android=true,$opera=true,$blackberry=true,$palm=true,$windows=true,$mobileredirect=false,$desktopr……继续阅读 » 4年前 (2021-03-22) 1827浏览 2540个赞
php在当前页验证表单数据URL: http://support.jodohost.com/showthread.php?t=4350<?php function VerifyForm(&$values, &$errors){ // Do all necessary form verification i……继续阅读 » 4年前 (2021-03-22) 2604浏览 954个赞
这个php图片上传类功能非常完善,完全可以满足各种图片上传需求<?php/************************************** seesaw associates | http://seesaw.net client: file: description: Copyright (C) 2008 M……继续阅读 » 4年前 (2021-03-22) 1225浏览 2183个赞
这段代码可以检测用户是否使用移动设备浏览网页,检验非常完整<?php $mobile_browser = '0'; if(preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone)/i', strtolowe……继续阅读 » 4年前 (2021-03-22) 1366浏览 2694个赞
这段代码简单的演示了php如何读取和分析xml文件//xml.xml : <?xml version="1.0" encoding="utf-8" ?><Kategorien> <Kategorie> <ID>1</ID> ……继续阅读 » 4年前 (2021-03-22) 2858浏览 2129个赞
php检测给定的url地址是否存在function url_exists($url) { $hdrs = @get_headers($url); return is_array($hdrs) ? preg_match('/^HTTP\\/\\d+\\.\\d+\\s+2\\d\\d\\s+.*$/',$hdrs[0]……继续阅读 » 4年前 (2021-03-22) 2580浏览 1720个赞
php中通过定义mysql_safe_string函数防止sql注入function mysql_safe_string($value) { if(empty($value)) return 'NULL'; elseif(is_string($value)) return '\……继续阅读 » 4年前 (2021-03-22) 1318浏览 2365个赞
这段代码提供了几个常用的正则//replace all but links/<(?!\/?a(?=>|\s.*>))\/?.*?>/g //validate url/^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \?=.-]*)*\/?$/ //Validate……继续阅读 » 4年前 (2021-03-22) 2206浏览 186个赞
php链接mysql的基本方法$username="username";$password="password";$database="your_database";$table="your_table"; mysql_connect(localhost,$use……继续阅读 » 4年前 (2021-03-22) 1582浏览 111个赞
面向对象的mysql数据库操作php类<?phpclass database { var $host = NULL; var $username = NULL; var $password = NULL; var $databaseName = NULL; var $link = NULL; var $queries = NUL……继续阅读 » 4年前 (2021-03-22) 1560浏览 335个赞
php获取twitter最新的消息<?phpfunction get_status($twitter_id, $hyperlinks = true) { $c = curl_init(); curl_setopt($c, CURLOPT_URL, "http://twitter.com/statuses/user_ti……继续阅读 » 4年前 (2021-03-22) 1628浏览 844个赞
一个php mysql数据库操作类,功能不是很完善,但非常有用<?phpclass Database{ private $host; private $user; private $pwd; private $rows; private $error; private $result; private $dbName; pri……继续阅读 » 4年前 (2021-03-22) 3157浏览 443个赞
这段代码比较完整,带session写入,mysql数据库查询//escape data and strip tagsfunction safestrip($string){ $string = strip_tags($string); $string = mysql_real_escape_string($string); return $st……继续阅读 » 4年前 (2021-03-22) 1283浏览 983个赞
一个用来遍历CSV文件的php类<?php class CSVIterator implements Iterator{ const ROW_SIZE = 4096; private $filePointer; private $currentElement; private $rowCounter; private $del……继续阅读 » 4年前 (2021-03-22) 1991浏览 1684个赞
php发送邮件函数,支持html和普通文本<?phpfunction send_mail($emailaddress, $fromaddress, $namefrom, $emailsubject, $body){ $eol="\n"; $mime_boundary=md5(time()); # Commo……继续阅读 » 4年前 (2021-03-22) 2614浏览 1221个赞
php返回相对时间,如:20分钟前,3天前function plural($num) { if ($num != 1) return "s";} function getRelativeTime($date) { $diff = time() - strtotime($date); if ($diff<60)……继续阅读 » 4年前 (2021-03-22) 2404浏览 1935个赞
php优化mysql数据库的所有表<?php dbConnect(); // Database connection $alltables = mysql_query("SHOW TABLES"); while ($table = mysql_fetch_assoc($alltables)) { for……继续阅读 » 4年前 (2021-03-22) 2357浏览 2723个赞
php计算到指定的日期还有多少天function countdays($d){ $olddate = substr($d, 4); $newdate = date(Y) ."".$olddate; $nextyear = date(Y)+1 ."".$olddate; if($newdate……继续阅读 » 4年前 (2021-03-22) 2547浏览 2665个赞
这段php代码改变了图片直接打开为下载// The php (process.php) $file = $_GET['file'];header ("Content-type: octet/stream");header ("Content-disposition: attachment; fi……继续阅读 » 4年前 (2021-03-22) 3066浏览 2737个赞
在不破坏单词的情况下截断字符串/*returns text limited by a specified length of characters but keeping words intact. the final character count will not be exact since it is affected by the poss……继续阅读 » 4年前 (2021-03-22) 2964浏览 1778个赞
一个简单的php BBCode替换函数function BBcode($texto){ $a = array( "/\[i\](.*?)\[\/i\]/is", "/\[b\](.*?)\[\/b\]/is", "/\[u\](.*?)\[\/u\]/is&qu……继续阅读 » 4年前 (2021-03-22) 2137浏览 1292个赞
从给定的url中移除指定的参数,如果参数不存在,则返回原urlfunction remove_querystring_var($url, $key) { $url = preg_replace('/(.*)(?|&)' . $key . '=[^&]+?(&)(.*)/i', ……继续阅读 » 4年前 (2021-03-22) 1249浏览 1551个赞
这段代码可以动态为url添加key-value查询参数,如果参数已经存在则会用新的进行覆盖function add_querystring_var($url, $key, $value) { $url = preg_replace('/(.*)(?|&)' . $key . '=[^&]+?(&am……继续阅读 » 4年前 (2021-03-22) 2913浏览 1984个赞
php修改上传图片的尺寸<?php // This is the temporary file created by PHP$uploadedfile = $_FILES['uploadfile']['tmp_name']; // Create an Image from it so we can……继续阅读 » 4年前 (2021-03-22) 3114浏览 349个赞
php验证邮件地址函数<?php function validateEmail($email){ $isValid = true; $atIndex = strrpos($email, "@"); if (is_bool($atIndex) && !$atIndex) { ……继续阅读 » 4年前 (2021-03-22) 1777浏览 1019个赞
php得到当前页面的完整地址function full_url(){ $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : ""; $p……继续阅读 » 4年前 (2021-03-22) 1883浏览 260个赞
一个非常全面的php Email地址函数function check_email_address($email) { // First, we check that there's one @ symbol, and that the lengths are right if (!ereg("^[^@]{1,64}@[^@]……继续阅读 » 4年前 (2021-03-22) 2103浏览 1302个赞
一段简单的php生成图片水印的代码,这段代码只支持图片水印function watermark($imagesource){ $filetype = substr($imagesource,strlen($imagesource)-4,4); $filetype = strtolower($filetype); if($filetype ==……继续阅读 » 4年前 (2021-03-22) 2374浏览 2576个赞
php给自己发送自动备份的mysql数据表邮件<?// Create the mysql backup file// edit this section$dbhost = "yourhost"; // usually localhost$dbuser = "yourusername";$dbpas……继续阅读 » 4年前 (2021-03-22) 1388浏览 2299个赞
php记录Google机器人访问足迹<?php $email = "test@test.com"; if(eregi("googlebot",$HTTP_USER_AGENT)){ if ($QUERY_STRING != "") { $url ……继续阅读 » 4年前 (2021-03-22) 1368浏览 2586个赞
一段php发送邮件的代码,邮件格式可以使纯文本或者html,可以添加附件PHP: Sending Email (Text/HTML/Attachments) Email is the most popular Internet service today. A plenty of emails are sent and delivered each……继续阅读 » 4年前 (2021-03-22) 1782浏览 2643个赞
通过这段代码可以判断用户的请求是否来自AJAX XMLHttpRequest,以区别普通post,get和ajaxfunction isAjax() {return (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && ($_SERVER['HTTP_X_REQUES……继续阅读 » 4年前 (2021-03-22) 2336浏览 2508个赞
这段php类可以挨个添加文件到数组,最后将添加的文件打包成zip/* $Id: zip.lib.php,v 1.1 2004/02/14 15:21:18 anoncvs_tusedb Exp $ */ // vim: expandtab sw=4 ts=4 sts=4: /** * Zip file creation class. *……继续阅读 » 4年前 (2021-03-22) 2749浏览 2308个赞