通过这些校验函数可以很容易的验证数据是否是执行的类型is_array() – Test for Arraysis_bool() – Test for Booleans (TRUE, FALSE)is_float() – Test for Floating-point numbersis_int() – Test for Integersis_nu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2754浏览 2433个赞
PHP文件上传时 $_FILES 数据的内容$_FILES['file']['name'] 上传文件的名字 (e.g., somefile.jpg)$_FILES['file']……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2139浏览 520个赞
php图片上传范例代码<?php // upload.phpecho <<<_END<html><head><title>PHP Form Upload</title></head><body><form method='post……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2463浏览 1821个赞
php复制文件的语法,使用copy函数<?php // copyfile2.phpif (!copy('testfile.txt', 'testfile2.txt')) echo "Could not copy file";else echo "File successful……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2851浏览 1616个赞
php修改服务器上的文件代码范例<?php // update.php$fh = fopen("testfile.txt", 'r+') or die("Failed to open file");$text = fgets($fh);fseek($fh, 0, SEEK_END);……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2525浏览 2988个赞
php将json数据写入到文件的范例代码$json = '{"key":"value"}';$file = new File('/path/to/file', true);$file->write($json);……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3403浏览 712个赞
php链接到mysql数据库,最后关闭链接的代码演示用mysql_connect链接到数据库,用mysql_close关闭数据库<?php $UserName = 'abc';$Password = '8sj27s';$DbHandle = mysql_connect ('localhos……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1547浏览 1228个赞
php链接mysql数据库并作简单的查询<?php$UserName = 'abc';$Password = '1234';$DbHandle = mysql_connect ('localhost', $UserName, $Password);if (!$DbHandle) {……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2618浏览 2089个赞
php 中用fread读取文件的代码演示<?php$fh = fopen("testfile.txt", 'r') ordie("File does not exist or you lack permission to open it");$text = fread($fh, 3)……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2283浏览 402个赞
php链接到mysql的简单示例需要提供mysql的服务器地址,用户名和密码,这里mysql装在本机,所以使用localhost<?php $UserName = 'abc';$Password = '8sj27s';$DbHandle = mysql_connect ('localhos……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1348浏览 650个赞
php中通过 $_SESSION保存session变量,下面的代码简单演示了 $_SESSION的用法<?php session_start(); print("<html><b>"); $_SESSION["sitename"] = "W3M";……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1790浏览 1368个赞
SimpleXML 是一个php扩展,有了它可以非常容易的操作xml文件class CI_ManipulateXML{ var $xml=''; function CI_ManipulateXML($xmlcontent){ $this->xml=$xmlcontent;} function ConvertX……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1671浏览 2426个赞
php Codeigniter发送邮件Codeigniter的邮件发送支持一下特性:Multiple Protocols: Mail, Sendmail, and SMTPMultiple recipientsCC and BCCsHTML or Plaintext emailAttachmentsWord wrappingPrioritie……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1253浏览 970个赞
attach() 方法允许你的发邮件时带上附件,下面是演示代码$this->load->library('email');$this->email->from('w3@w3mentor.com', 'W3M');$this->email->subject(……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2584浏览 2746个赞
PHP日期函数 – 格式化一个UNIX时间为文本日期函数可以根据指定的格式将一个unix时间格式化成想要的文本输出 使用到函数语法如下string date (string $Format);string date (string $Format, int $Tim……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2215浏览 1170个赞
PHP GETDATE函数是用来获得当前的日期和时间,从操作系统或一个关联数组转换成UNIX风格的日期整数。 语法格式如下array getdate ();array getdate (integer $Time); ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1234浏览 2068个赞
有两种方法可以得到用户的session id,第一是使用session_id()函数,另外一种是使用内置的常量SID获得,SID包含了session id和session值<?php session_start(); print("<html><b>"); $sid = session_i……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1457浏览 1470个赞
通过组合.htaccess文件和.htpasswd文件被用来阻止用户访问某些服务器上的目录。这些文件包含有关用户被允许访问一个目录和自己的密码信息。 HTTP身份验证可以通过发送特殊的HTTP header信息,而不用使用.htaccess文件<?php if (!isset($_SERVER['PHP_AUTH_USER……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2723浏览 448个赞
php中可以使用checkdate函数校验日期的正确性。 语法integer checkdate (int %Month, int $Day, int $Year); 演示代码<?PHP ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1883浏览 2547个赞
php gettimeofday函数-返回当前时间存放在关联数组里Key Descriptionsec Seconds since midnight before January 1, 1970usec  Microsecond……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1664浏览 1761个赞
php表单同时上传多个文件的方法,下面提供了两种方法,一种通过文件数组,第二种通过不同的变量 方法1:在html表单, 放置多个文件选择框, 使用数组名作为组件的名字, 如下:<form action="up……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1954浏览 1383个赞
php中使用switch分支语句范例 <?php//Initializing variables$a = 10;$b = 5;echo("1. Addition <br>");echo("2. Subtraction <br>");echo("3. Multipl……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2228浏览 714个赞
最简单的方法如下,直接通过file_get_contents获取远程内容,然后通过json_decode解码$data = json_decode( file_get_contents(“http://www.w3mentor.com/service.json”));……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2290浏览 370个赞
php中可以在函数内部内嵌一个函数,调用范围仅限于函数本身<?phpfunction msg(){ echo("<center><h2>Displaying even numbers</h2></center><p><p>"); fun……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2819浏览 296个赞
php中while语句使用范例<?php$a=2;echo("<p>Even Numbers from 2 to 30<p>");while ($a <=30){ echo("$a <br>"); $a=$a+2;}?>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2644浏览 1680个赞
php中使用自定义错误处理<?phperror_reporting(E_ALL);function ErrHandler($errorno, $errorstr, $errorfile, $errorline) { $display = true; $notify = false; $halt_script = false;……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2355浏览 1901个赞
php中通过fget读取文件<?php$fh = fopen("testfile.txt", 'r') ordie("File does not exist or you lack permission to open it");$line = fgets($fh);fclose(……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2626浏览 1743个赞
php中可以使用file_exists函数检测文件是否存在,如果存在返回True,否则返回Falseif (file_exists("somefile.txt")) echo "File exists";……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1948浏览 421个赞
php创建一个简单的文本文件1. 使用fopen以写入模式(w)打开文件2. 使用fwrite写入文件3.通过fclose关闭文件<?php // testfile.php$fh = fopen("testfile.txt", 'w') or die("Failed to create fi……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1447浏览 2931个赞
这段代码用于上传图片,可以根据图片类型检测图片是否安全,不是简单的检测扩展名<?php // upload.phpecho <<<_END<html><head><title>PHP Form Upload</title></head><body><……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2920浏览 2433个赞
php实现的一个通用的从数据库表读取数据到数组的函数,此函数不关心表结构,只需要指定表名、结构和查询条件既可以对表进行通用查询操作,非常实用。function listmytablerows($table, $name, $field, $where, $textID){/ / Connect to the database and query ex……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1885浏览 1191个赞
php在一个cookie中存储多个值得代码演示<?php$info = array("xyz", "yellow", 22);setcookie("usr", serialize($info));?><html><head><title>M……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1628浏览 975个赞
在php中执行系统命令,如LS<?php // exec.php$cmd = "dir"; // Windows// $cmd = "ls"; // Linux, Unix & Macexec(escapeshellcmd($cmd), $output, $status);if ($statu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2342浏览 1724个赞
php读取并显示文本文件内容 <?php$file='info.txt';$fobj=fopen($file,"r");$text=fread($fobj, filesize($file));echo("<h2><font color='blue'&g……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1415浏览 883个赞
php 类定义和类实例使用范例<?phpclass emp{ var $name; var $address; var $dept; function assign_info($n,$a,$d) { $this->name=$n; $this->state=$a; $……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1565浏览 1296个赞
PHP Codeigniter校验用户email地址,Codeigniter内置了email检验的函数,使用非常简单$email = $this->input->post('email') ;if( ! valid_email($email) ){ show_404 ("The email address……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2542浏览 1455个赞
为wordpress创建一个对seo更加友好的标题 在wordpress  header. php找到下面的代码<title><?php bloginfo(' name' ) ; ?>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2612浏览 2654个赞
PHP Codeigniter检测表单post上来的数据$name = $this->input->post(' name' ) ;$email = $this- >input->post( ' email' ) ;$subj ect = $this->input->post……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2933浏览 255个赞
PHP Codeigniter校验ip地址,本范例演示了Codeigniter如何获取用户ip地址,同时校验ip地址的有效性 获取用户ip$this->input->ip_address();{--如果ip获取失败,则返回 0.0.0.0,我们也可以使用下面的代码校……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3043浏览 632个赞
PHP codeigniter里显示所有脚本的执行时间 如果你想显示所有脚本的执行时间,请将下面的代码加入到view里面<?php echo $this->benchmark- >elapsed_time() ; ?> ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2961浏览 2819个赞
检测PHP codeigniter脚本消耗的内存情况<?php echo $this->benchmark- >memory_usage() ; ?> 相关的伪变量是:{ memory_usage}……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2106浏览 1604个赞
这段php代码可以用来备份mysql数据库或者mysql表<?php$Database_name = 'somedb';$table = 'sometable'; Define ('H', 'localhost'); define ('N……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2608浏览 2487个赞
php codeigniter发送邮件并打印调试信息,用codeigniter自带的邮件发送库发送邮件$this->load->library('email' ) ;$this->email- >from(' you@example. com' , ' Your Name……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1236浏览 172个赞
php中func_get_arg 函数得到指定索引的函数参数,此函数可以处理当前函数的参数列表 下面的代码可以输出当前函数的所有参数for ($index = 0; index < func_num_args(); index++) { $arg = func_get_……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2271浏览 607个赞
php使用foreach循环反转数组$users = array("Mani", "Nani", "Item", "Raja");print "The users are:\n";foreach ($users as $key => $value……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1339浏览 1588个赞