<?php session_start(); $_SESSION["admin"]=null; //12.2.2创建会话 //启动会话->注册会话->使用会话->删除会话 session_destroy(); function addone() { $i=0;$i=$i+1; echo "\$i=$i<br>"; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>局部变量生命周期</title> </head> <body> <?php addone(); addone(); addone(); echo "hello,world <br />"; //4.4.3引用文件 //引用文件的方法有两种:如require及include。两种方法提供不同的使用弹性。 // //require的使用方法: //php注释: // echo "两个双斜线表示后面一行是注释,不会被显示出来"; /* echo "在这之间都是注释"; echo "多行注释,不会被显示出来";*/ $str="欢迎"; $strl="到新才学习php"; echo "{$str}{$strl} <br />"; $string="欢迎你"; $string.="来到新蔡学习php<br />"; echo $string; echo $_SERVER[‘PHP_SELF‘]."<br />"; for($i=1;$i<=10;$i++) { echo "$i.以后不干了<br />\n"; } //单引号与双引号的区别: /* 双引号中的内容是经过php的语法分析过的,任何变量在双引号中都会被转换为它的值进行输出显示;而单引号的内容是“所见即所得”的,无论有无变量,都被当成普通字符串直接原样输出。*/ $test="php"; $str="i love $test"; $str1=‘i love $test‘; echo $str.‘<br />‘; echo $str1; echo strstr("芹菜教育","菜").‘<br />‘; //checkdate 验证时间函数,判断时间是否有效,有效返回true。否则返回false; //1、年-月-日 echo date(‘Y-m-j‘).‘<br />‘; echo date(‘Y-n-j‘).‘<br />‘; echo date(‘G-i-s‘).‘<br />‘; echo date(‘Y-m-d‘).‘<br />‘; //echo "当前时间是:".date("Y-m-d",mktime())."<p>"; //数组 $str=array( "书籍"=>array("文学","历史","地理"), "体育用品"=>array("m"=>"足球","n"=>"篮球"), "水果"=>array("橙子",8=>"葡萄","苹果")); print_r($str); ?> <form name="forml" method="post"> <table width="323" border="1" cellpadding="1" cellspacing="1" bordercolor="#66cc33" bgcolor="#fffff"> <tr> <td width="118" height="24" align="right" bgcolor="#ccff33">用户名: </td> <td width="192" height="24" bgcolor="#ccff33"><input name="user" type="text" class="inputcss" id="user" size="24" /></td> </tr> <tr> <td height="24" align="right" bgcolor="#ccff33">密 码: </td> <td height="24" bgcolor="#ccff33"><input name="pwd" type="password" class="inputcss" id="pwd" size="24" /></td> </tr> <tr align="center" bgcolor="#ccff33"> <td height="24" colspan="2"><input name="submit" type="submit" value="登录" /></td> </tr> </table> </form> <?php //输出用户登录信息 while(list($name,$value)=each($_POST)) { if($name!="submit"){ echo "$name=$value<br />"; } } ?> </body> </html>
时间: 2024-10-07 19:18:56