php清除和销毁session的代码下面的代码分别用户删除单个session值和全部session unset() 用于释放一个已经存在的session值.可以使用 session_destroy() 函数销毁全部session.<?phpunset($_SESSION……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2468浏览 541个赞
php可以通过$_COOKIE 读取cookie,下面是演示代码<html><body> <?phpif (isset($_COOKIE["user"])) echo "Welcome " . $_COOKIE["user"] . "!<……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2609浏览 2004个赞
本代码介绍了在php中如何获取表单提交的信息,并发送邮件 保存下面的html代码到:email.html文件<html> <head> <title>Simple Send Mail Form www.75271.com(脚本分享网)&l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1870浏览 1560个赞
程序中用到了php的mail函数,该函数定义如下:bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )如果邮件发送成功返回True,否则返回False&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2237浏览 298个赞
php校验表单,检测字段是否为空,当表单中有未填写的字段,则会显示错误信息。<html><body><form METHOD="POST" ACTION="ErrorCheck.php"><h1>Contact Information</h1>&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1571浏览 1083个赞
将表单的各个元素的name都设置成同一个数组对象既可以以数组的方式传递表单值<form method="post" action="arrayformdata.php"><label>Tags</label><input type="text" na……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1260浏览 579个赞
要遍历XML树,我们可以使用下面的代码<?php function walk_tree ($node, $depth = 0) { for ($i = 0, $indent = ''; $i < $depth; $i++) $indent .= ' ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2218浏览 892个赞
网页提交textarea文本框数据到php后端代码范例,修改时注意修改表达的action和后端php网页的地址 html代码<html><head><title>A simple HTML form from www.75271.com(脚本……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2932浏览 156个赞
我们可以通过在程序的前后分别记录开始和结束时间,两个时间差就是程序的执行时间。<?php$long_str = "this is a test to see how much time md5 function takes to execute over this string"; // start timing from……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1282浏览 2420个赞
php中可以通过rmdir()函数删除一个空目录<?php if (file_exists("/temp/test")) { rmdir("/temp/test"); print("Directory removed.\n");} else { print("Di……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2145浏览 2236个赞
要让php接收表单传递过来的值,需要将表单的action设置为php后端页面的地址,$ _POST是PHP的全局数组保存所有收到的值。 html代码<html><head><title>脚本分享网(www.75271.com)演示代码<……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2127浏览 2706个赞
下面的代码先判断目录是否存在,然后通过mkdir()函数在服务器上创建了一个目录<?php if (file_exists("/temp/test")) { print("Test Directory already exists.\n");} else { mkdir("/temp/t……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3084浏览 1120个赞
php中可以通过file_get_contents()函数将文件一次性读取到字符串中<?php $file = file_get_contents("/tmp/file.txt");print("Size of the file: ".strlen($file)."\n");?>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2541浏览 2941个赞
在php中要一次输入多行字符,可以使用 >>>定界符方式,在 >>>后面跟着一个唯一标识符,换行输入多行字符串,最后使用同样的标识符结束字符串即可,下面是演示范例。$who = "World";echo <<<TEXTSo I said, "Hello $who"TEXT; ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2410浏览 2542个赞
php中可以通过file()函数将文件读取到数组中,数组中的元素即为文件的每行,file()函数通过”\n”按行分割文件保存到数组,所以数组每个元素都是以”\n”结尾,我们可以通过 rtrim()函数将其去除<?php $lines = file("/tmp/file.txt")……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2911浏览 802个赞
php中可以通过fopen()打开一个文件,第二个参数设置为”r”表示已只读方式打开,函数返回一个文件句柄,其它函数就可以通过这个文件句柄对文件进行不同方式的读取<?php $file = fopen("/tmp/file.txt", "r");print("Type o……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2760浏览 1948个赞
下面的代码通过array_shift()函数加while循环不断移除数组的第一个元素,直到数组为空<?php$alpha = array("a", "b", "c"); while ( count( $alpha ) ) { $val = array_shift( $alpha)……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2926浏览 1767个赞
php中有两个函数用来判断数组中是否包含指定的键,分别是array_key_exists和isset array_key_exists语法如下array_key_exists($key, $array) 如果……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2361浏览 1553个赞
php通过array_unshift函数添加多个变量到数组前端,函数返回添加后的数组元素个数<?php $alpha = array("a", "b", "c");$final = array_unshift($alpha, "d","e");……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1895浏览 890个赞
php中你可以通过isset函数判断变量是否存在echo isset ($x); 如果变量存在并有值返回true,否则返回false……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2623浏览 116个赞
php中针对数组遍历有一系列的函数是我们可以非常方便的操作数组,要遍历一个数组,第一步就是要将指针指向数组开头,使用reset()函数,使用prev()和next()函数可以查看数组的上一个和下一个元素。在然和位置都可以使用current()函数获得当前的值,使用key()函数获得键值$array = array(’foo’ => ’bar’, ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1332浏览 248个赞
下面的代码演示了php中如何获取用户上传的文件,并限制文件类型的一般图片文件,最后保存到服务器<?php$allowedExts = array("gif", "jpeg", "jpg", "png");$extension = end(explode("……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2610浏览 1887个赞
php通过array_push()函数添加多个变量到数组末尾,array_push函数接受任意数量的变量添加。<?php $alpha = array("a", "b", "c");$final = array_push($alpha, "d","e&q……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2983浏览 2928个赞
下面的php代码通过点操作符连接多个字符串,然后通过strlen获得字符串的长度输出$str1 = "hello";$str2 = "75271.com";$str = $str1 . " " . $str2;echo $str . ",字符串长度:" . strle……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1389浏览 1707个赞
php对于类似$age = array(“zhangshan”=>14,”lisi”=>15,”sharejs”=>16);这样的数组可以通过foreach的方法进行遍历,下面是详细的代码$age = array("zhangshan"=>14,"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2258浏览 1838个赞
php可以通过点操作符对多个字符串进行连接操作,类似于python中的加号$str1 = "hello";$str2 = "75271.com";$str = $str1 . " " . $str2;echo $str; ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1584浏览 1458个赞
php的date函数用于输出当前日期,而且可以指定输出格式,下面是一段简单的演示代码echo date("Y.m.d") . "\n";echo date("Y/m/d") . "\n";echo date("Y-m-d") . "\n&qu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1265浏览 2469个赞
下面的php代码逐行读取sharejs.php文件,然后输出,php果然简洁$f = fopen("sharejs.php","r") or exit("open error");while(!feof($f)){ $line = fgets($f); echo $line;……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2201浏览 2172个赞
php比较两个数据判断用户提交的表单数据是否已经存在<?php$choices = array('my choice 1', 'my choice 2', 'my choice 3'); $valid = true;if (is_array($_GET['inputArr……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2346浏览 480个赞
urlencode用来对字符串进行url编码,经常要使用到<?php$myurlparam = "hello this is a test message";$site = "http://www.75271.com";$query = $site;$query .= "&messa……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2004浏览 1281个赞
php通过array_merge()函数合并两个数组,array_merge()是一个php函数,用于将两个或者多个数组合并,后一个数组会追加到前一个数组后面,并返回结果数组。它接受两个或两个以上的数组,并返回一个包含了所有元素的数组。$first = array("aa", "bb", "cc"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1378浏览 2209个赞
array_merge()是一个用于合并数组的php函数,后一个数组追加到前一个的结束位置并返回合并后的结果数组。<?php$beginning = 'foo';$end = array(1 => 'bar');$result = array_merge((array)$beginning, (a……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1196浏览 380个赞
php中可以通过count()函数返回数组的长度,即数组元素个数,由于php数组的元素索引是从0开始计数的,所以count()函数不能返回数组中最后一个元素的索引号,需要减去1,下面的代码返回$users数组的最后一个元素的索引号$users = array ("qdv.cn", "haotu.net", &quo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1692浏览 1518个赞
php真的是非常的灵活,定义数组也是非常的方便 方法1,可以通过下面的方式定义数组$users[],php会自动维护索引号:$users[] = "mani";$users[] = "nani";$users[] = "mad&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1876浏览 706个赞
PHP提供了一个名为array_fill()的函数用来给数组填充默认值,array_fill()函数有三个参数:第一个是数字,代表开始填充的索引号,第二个整数,代表要填充的元素数量,第三个参数是要添加到数组中的值。 使用范例,下面的代码表示给$usertype数组0-4的位置填充7527……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1889浏览 375个赞
end()函数在PHP中用于检索数组中的最后一个元素。end()函数需要一个数组作为其唯一参数,并返回给定的数组的最后一个元素。$users = array ("52ebook.com", "haotu.net", "qdv.cn", "75271.com");print ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2198浏览 100个赞
使用PHP的strtotime计算两个给定日期之间的天数PHP的strtotime函数用于将任何英文文本的日期时间描述解析为Unix时间戳。这个函数将使用TZ环境变量(如果有的话)来计算时间戳。如果执行成功它返回一个时间戳,否则返回FALSE。在PHP 5.1.0之前,这个函数将返回-1。$date1 = date(‘Y-m-d’);$date2 =……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2662浏览 1110个赞
mysql_num_fields用于获得查询结果的列数,如果执行成功返回列数,执行失败,返回boolean值<?php$UserName = 'abc';$Password = '1234';$DbHandle = mysql_connect ('localhost', $UserN……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1589浏览 1278个赞
mysql_fetch_row用于从mysql数据库中查询数据,并保存到list中 语法如下:array mysql_fetch_row (resource $Result_Set) 如果执行成功,则返回l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2371浏览 682个赞
mysql_fetch_object函数用于,提取结果行从一个MySQL的结果集作为objectiative数组。 mysql_fetch_object语法:array mysql_fetch_object (resource $Result_Set) ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1136浏览 2161个赞
php查询mysql数据库并将结果保存到数组主要用到了mysql_fetch_assoc函数mysql_fetch_assoc语法如下:array mysql_fetch_assoc (resource $Result_Set){-范例代码如下--}<?php$UserName = 'abc';$Passwo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1454浏览 2358个赞
PHP gmdate –将一个UNIX 时间格式化成 GMT 文本 语法如下:string gmdate (string $Format)string gmdate (string $Format, int $Time) ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2765浏览 2294个赞
PHP time 函数– 得到当前时间的时间戳,输出格式为整数输出结果为从1970年1月1日到当前时间的秒数<?php $Now = time(); echo 'When this page was loaded, <br>';echo "$Now seconds had elapsed sin……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2883浏览 1715个赞
php从文件读取json数据的简单范例$file = new File('/path/to/file');$myjson = $file->read(true, 'r');$myjsonarray = json_decode($json);……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2550浏览 2317个赞
php使用unlink删除文件<?php // deletefile.phpif (!unlink('testfile.txt')) echo "Could not delete file";else echo "File 'testfile' successfully de……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1941浏览 1966个赞