php使用unlink删除文件<?php // deletefile.phpif (!unlink('testfile.txt')) echo "Could not delete file";else echo "File 'testfile' successfully de……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2186浏览 1125个赞
通过这些校验函数可以很容易的验证数据是否是执行的类型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) 1725浏览 2937个赞
PHP文件上传时 $_FILES 数据的内容$_FILES['file']['name'] 上传文件的名字 (e.g., somefile.jpg)$_FILES['file']……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2760浏览 1924个赞
php图片上传范例代码<?php // upload.phpecho <<<_END<html><head><title>PHP Form Upload</title></head><body><form method='post……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3124浏览 2620个赞
php复制文件的语法,使用copy函数<?php // copyfile2.phpif (!copy('testfile.txt', 'testfile2.txt')) echo "Could not copy file";else echo "File successful……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2600浏览 470个赞
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) 2385浏览 280个赞
php将json数据写入到文件的范例代码$json = '{"key":"value"}';$file = new File('/path/to/file', true);$file->write($json);……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3362浏览 1476个赞
php链接到mysql数据库,最后关闭链接的代码演示用mysql_connect链接到数据库,用mysql_close关闭数据库<?php $UserName = 'abc';$Password = '8sj27s';$DbHandle = mysql_connect ('localhos……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1223浏览 774个赞
php链接mysql数据库并作简单的查询<?php$UserName = 'abc';$Password = '1234';$DbHandle = mysql_connect ('localhost', $UserName, $Password);if (!$DbHandle) {……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1449浏览 963个赞
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) 2443浏览 2383个赞
php链接到mysql的简单示例需要提供mysql的服务器地址,用户名和密码,这里mysql装在本机,所以使用localhost<?php $UserName = 'abc';$Password = '8sj27s';$DbHandle = mysql_connect ('localhos……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1760浏览 623个赞
php中通过 $_SESSION保存session变量,下面的代码简单演示了 $_SESSION的用法<?php session_start(); print("<html><b>"); $_SESSION["sitename"] = "W3M";……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2774浏览 2123个赞
SimpleXML 是一个php扩展,有了它可以非常容易的操作xml文件class CI_ManipulateXML{ var $xml=''; function CI_ManipulateXML($xmlcontent){ $this->xml=$xmlcontent;} function ConvertX……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1795浏览 1683个赞
php Codeigniter发送邮件Codeigniter的邮件发送支持一下特性:Multiple Protocols: Mail, Sendmail, and SMTPMultiple recipientsCC and BCCsHTML or Plaintext emailAttachmentsWord wrappingPrioritie……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3080浏览 1835个赞
attach() 方法允许你的发邮件时带上附件,下面是演示代码$this->load->library('email');$this->email->from('w3@w3mentor.com', 'W3M');$this->email->subject(……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1575浏览 2380个赞
PHP日期函数 – 格式化一个UNIX时间为文本日期函数可以根据指定的格式将一个unix时间格式化成想要的文本输出 使用到函数语法如下string date (string $Format);string date (string $Format, int $Tim……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2572浏览 1440个赞
PHP GETDATE函数是用来获得当前的日期和时间,从操作系统或一个关联数组转换成UNIX风格的日期整数。 语法格式如下array getdate ();array getdate (integer $Time); ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1479浏览 950个赞
有两种方法可以得到用户的session id,第一是使用session_id()函数,另外一种是使用内置的常量SID获得,SID包含了session id和session值<?php session_start(); print("<html><b>"); $sid = session_i……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2739浏览 1699个赞
通过组合.htaccess文件和.htpasswd文件被用来阻止用户访问某些服务器上的目录。这些文件包含有关用户被允许访问一个目录和自己的密码信息。 HTTP身份验证可以通过发送特殊的HTTP header信息,而不用使用.htaccess文件<?php if (!isset($_SERVER['PHP_AUTH_USER……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1182浏览 1338个赞
php中可以使用checkdate函数校验日期的正确性。 语法integer checkdate (int %Month, int $Day, int $Year); 演示代码<?PHP ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2964浏览 2477个赞
php gettimeofday函数-返回当前时间存放在关联数组里Key Descriptionsec Seconds since midnight before January 1, 1970usec  Microsecond……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2681浏览 2137个赞
php表单同时上传多个文件的方法,下面提供了两种方法,一种通过文件数组,第二种通过不同的变量 方法1:在html表单, 放置多个文件选择框, 使用数组名作为组件的名字, 如下:<form action="up……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2368浏览 1934个赞
php中使用switch分支语句范例 <?php//Initializing variables$a = 10;$b = 5;echo("1. Addition <br>");echo("2. Subtraction <br>");echo("3. Multipl……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2926浏览 2137个赞
最简单的方法如下,直接通过file_get_contents获取远程内容,然后通过json_decode解码$data = json_decode( file_get_contents(“http://www.w3mentor.com/service.json”));……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1842浏览 1810个赞
php中可以在函数内部内嵌一个函数,调用范围仅限于函数本身<?phpfunction msg(){ echo("<center><h2>Displaying even numbers</h2></center><p><p>"); fun……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1395浏览 733个赞
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) 3169浏览 664个赞
php中使用自定义错误处理<?phperror_reporting(E_ALL);function ErrHandler($errorno, $errorstr, $errorfile, $errorline) { $display = true; $notify = false; $halt_script = false;……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3167浏览 2604个赞
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) 2012浏览 1249个赞
php中可以使用file_exists函数检测文件是否存在,如果存在返回True,否则返回Falseif (file_exists("somefile.txt")) echo "File exists";……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1705浏览 2627个赞
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) 1236浏览 345个赞
这段代码用于上传图片,可以根据图片类型检测图片是否安全,不是简单的检测扩展名<?php // upload.phpecho <<<_END<html><head><title>PHP Form Upload</title></head><body><……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2950浏览 156个赞
php实现的一个通用的从数据库表读取数据到数组的函数,此函数不关心表结构,只需要指定表名、结构和查询条件既可以对表进行通用查询操作,非常实用。function listmytablerows($table, $name, $field, $where, $textID){/ / Connect to the database and query ex……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1419浏览 2229个赞
php在一个cookie中存储多个值得代码演示<?php$info = array("xyz", "yellow", 22);setcookie("usr", serialize($info));?><html><head><title>M……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1541浏览 2792个赞
在php中执行系统命令,如LS<?php // exec.php$cmd = "dir"; // Windows// $cmd = "ls"; // Linux, Unix & Macexec(escapeshellcmd($cmd), $output, $status);if ($statu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1198浏览 1666个赞
php读取并显示文本文件内容 <?php$file='info.txt';$fobj=fopen($file,"r");$text=fread($fobj, filesize($file));echo("<h2><font color='blue'&g……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2665浏览 2670个赞
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) 2108浏览 149个赞
PHP Codeigniter校验用户email地址,Codeigniter内置了email检验的函数,使用非常简单$email = $this->input->post('email') ;if( ! valid_email($email) ){ show_404 ("The email address……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1712浏览 1459个赞
为wordpress创建一个对seo更加友好的标题 在wordpress  header. php找到下面的代码<title><?php bloginfo(' name' ) ; ?>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2479浏览 1978个赞
PHP Codeigniter检测表单post上来的数据$name = $this->input->post(' name' ) ;$email = $this- >input->post( ' email' ) ;$subj ect = $this->input->post……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1424浏览 729个赞
PHP Codeigniter校验ip地址,本范例演示了Codeigniter如何获取用户ip地址,同时校验ip地址的有效性 获取用户ip$this->input->ip_address();{--如果ip获取失败,则返回 0.0.0.0,我们也可以使用下面的代码校……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2939浏览 574个赞
PHP codeigniter里显示所有脚本的执行时间 如果你想显示所有脚本的执行时间,请将下面的代码加入到view里面<?php echo $this->benchmark- >elapsed_time() ; ?> ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2383浏览 1974个赞
检测PHP codeigniter脚本消耗的内存情况<?php echo $this->benchmark- >memory_usage() ; ?> 相关的伪变量是:{ memory_usage}……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1850浏览 1689个赞
这段php代码可以用来备份mysql数据库或者mysql表<?php$Database_name = 'somedb';$table = 'sometable'; Define ('H', 'localhost'); define ('N……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2881浏览 545个赞
php codeigniter发送邮件并打印调试信息,用codeigniter自带的邮件发送库发送邮件$this->load->library('email' ) ;$this->email- >from(' you@example. com' , ' Your Name……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2868浏览 982个赞
php中func_get_arg 函数得到指定索引的函数参数,此函数可以处理当前函数的参数列表 下面的代码可以输出当前函数的所有参数for ($index = 0; index < func_num_args(); index++) { $arg = func_get_……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1224浏览 2985个赞