php逐行读取文件范例代码,通过fopen打开文件,fgets读取文件,fclose关闭文件<?php$file = fopen("welcome.txt", "r") or exit("Unable to open file!");//Output a line of the fil……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2803浏览 1290个赞
我们使用SimpleXML来加载XML文件如下。<?php $xml = simplexml_load_file("sample.xml"); echo htmlspecialchars($xml->asXML());?> sa……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1254浏览 1021个赞
PHP的SimpleXML扩展提供了一个非常简单和易于使用的工具集,把XML转换为可以通过数组迭代的对象。我们使用SimpleXML来加载XML文件如下。<?php $xml = simplexml_load_file("sample.xml"); var_dump($xml);?> ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2376浏览 297个赞
下面的代码通过一个简单的范例演示了php如何读取xml文件并输出xml属性<?php $xml = simplexml_load_file("books.xml"); foreach($xml->book[0]->author->attributes() AS $a => $b) { ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 3220浏览 2045个赞
下面的代码分别用于创建mysql表和上传文件保存到mysql数据库 创建mysql表<?php $con = mysql_connect("localhost", "", ""); mysql_select_……继续阅读 » 水墨上仙 4年前 (2021-03-22) 3121浏览 2086个赞
给定一段文本,此代码分析文本的词频分布,生成tag云<?php/** * Tag cloud demo based on word frequency * @author: unknown * @since: 2007-02-27 */ // Store frequency of words in an array$freqDat……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1399浏览 2092个赞
php对mysql查询结果进行分页<?php function pageSplit($startPos, $rowsPerPage = '', $totalRows = '' ) { $numPages = $totalRows / $rowsPerPag……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1867浏览 210个赞
Mail-lib提供的简单发送邮件接口, 这段代码不能在windows下运行<?php function send_mail($to_address, $from_address, $subject, $message) { $path_to_sendmail = "/usr/lib/sendmail"; ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2422浏览 236个赞
In Recurive funaction..(code using PHP and MySql)When using a recursive function try not to use any iterative loops. It increases the number of iterations at execution time. In thi……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2330浏览 1894个赞
php检测Israeli ID (9 digits)是否有效<? // takes a string and returns an array of characters function toCharArray($input){ $len = strlen($input); for ($j=0;$j<$……继续阅读 » 水墨上仙 4年前 (2021-03-22) 3046浏览 2216个赞
阿拉伯数字转换为罗马数字函数function to_roman($num) { // Function to convert an arabic number ($num) to a roman numeral. $num must be between 0 and 9,999 if ($num < 0 || $num > 9999……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2557浏览 218个赞
这是一个php准确计算出复活节日期的函数<?PHP function isLeapYear( $nYEAR ) { if ((( $nYEAR % 4 == 0 ) AND !( $nYEAR % 100 == 0 )) AND ( $nYEAR % 400 != 0 )) { return TRUE; } else { ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2225浏览 1538个赞
这个php类可以识别和验证不同类型的信息卡号码<?php class credit_card { function clean_no ($cc_no) { // Remove non-numeric characters from $cc_no return ereg_replace……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2449浏览 2509个赞
给定可用的字符列表生成一个指定长度的随机字符串<? function randomString($len) { srand(date("s")); $possible="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890!@#……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1414浏览 2111个赞
php字符串转换成标准标题样式<?php function titleCase($string) { $len=strlen($string); $i=0; $last= ""; $new= ""; $strin……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2705浏览 2208个赞
Boolean Keywords<? /* BEGIN FUNCTION DEFINITIONS */ /* This function takes in an array and flushes all null values from the array. It returns the array - all null ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2258浏览 688个赞
Boolean Keyword Interpreter#!/usr/local/bin/php <? /* BEGIN FUNCTION DEFINITIONS */ /* This function takes in an array and flushes all null values from the array. ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1958浏览 2792个赞
这段代码包含两个函数,bin2text,二进制转换为文本,text2bin,文本转换成二进制<? function bin2text($bin_str) { $text_str = ''; $chars = explode("\n", chunk_split(str_replace(……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2445浏览 2891个赞
有了这个php类,计算函数或者一段代码的执行时间就简单了<? class c_Timer { var $t_start = 0; var $t_stop = 0; var $t_elapsed = 0; func……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1544浏览 2615个赞
一组php编写的用于金融计算的函数<?php /* VARIABLES: $m = number of periods per year. For instance, if you are For instance, if you are making payments monthly the……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2516浏览 1945个赞
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) 1624浏览 993个赞
php不透露实际地址的文件下载function download_document($filename, $path = "", $mimetype = "application/octet-stream"){ header("Cache-Control: must-revalidate, post……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1776浏览 2382个赞
这段代码用于提供下载,不是用来下载别人网站的内容的<?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) 2840浏览 2806个赞
php获得一个mysql数据查询结果if (!function_exists('mysql_fetch_results')) { function mysql_fetch_results($resource, $results = Array()) { while($row = @mysql_fetch_a……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1148浏览 2220个赞
php列出mysql指定数据库中的所有表if (!function_exists('mysql_list_db_tables')) { function mysql_list_db_tables($database) { $tables = Array(); $results = mysql……继续阅读 » 水墨上仙 4年前 (2021-03-22) 3094浏览 2183个赞
php列出mysql中可用数据库的名字if (!function_exists('mysql_list_databases')) { function mysql_list_databases($resources = Array()) { $list = Array(); for ($i ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1691浏览 2923个赞
php读取数据库生成一条一条的sql语句,可以用作mysql的备份if (!function_exists('mysql_dump')) { function mysql_dump($database) { $query = ''; $tables = @mysql_li……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1760浏览 2791个赞
php5已经包含了file_pub_contents函数,这个可以用在php4中if (!function_exists('file_put_contents')) { function file_put_contents($file, $contents = '', $method = 'a……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1717浏览 2743个赞
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) 2177浏览 1259个赞
这段代码演示了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) 2617浏览 1052个赞
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) 2262浏览 2939个赞
这段代码演示了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) 1784浏览 2525个赞
这段代码通过各种手段来检测用户终端是否是移动设备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) 2055浏览 845个赞
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) 1886浏览 2908个赞
这个php图片上传类功能非常完善,完全可以满足各种图片上传需求<?php/************************************** seesaw associates | http://seesaw.net client: file: description: Copyright (C) 2008 M……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2693浏览 259个赞
这段代码可以检测用户是否使用移动设备浏览网页,检验非常完整<?php $mobile_browser = '0'; if(preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone)/i', strtolowe……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1864浏览 589个赞
这段代码简单的演示了php如何读取和分析xml文件//xml.xml : <?xml version="1.0" encoding="utf-8" ?><Kategorien> <Kategorie> <ID>1</ID> ……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2047浏览 268个赞
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) 1818浏览 1501个赞
php中通过定义mysql_safe_string函数防止sql注入function mysql_safe_string($value) { if(empty($value)) return 'NULL'; elseif(is_string($value)) return '\……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1777浏览 1485个赞
这段代码提供了几个常用的正则//replace all but links/<(?!\/?a(?=>|\s.*>))\/?.*?>/g //validate url/^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \?=.-]*)*\/?$/ //Validate……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1433浏览 214个赞
php链接mysql的基本方法$username="username";$password="password";$database="your_database";$table="your_table"; mysql_connect(localhost,$use……继续阅读 » 水墨上仙 4年前 (2021-03-22) 2482浏览 613个赞
面向对象的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) 1832浏览 1480个赞
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) 2256浏览 713个赞
一个php mysql数据库操作类,功能不是很完善,但非常有用<?phpclass Database{ private $host; private $user; private $pwd; private $rows; private $error; private $result; private $dbName; pri……继续阅读 » 水墨上仙 4年前 (2021-03-22) 1573浏览 1310个赞
这段代码比较完整,带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) 1538浏览 930个赞