php数组的几个函数和超全局变量

拥有回忆 提交于 2019-12-05 08:14:06

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>新建网页</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="布尔教育 http://www.itbool.com" />
</head>
    <body>
        <?php
        /****
        布尔教育 高端PHP培训
        培  训: http://www.itbool.com
        论  坛: http://www.zixue.it
        ****/
        //40.游标操作
        $a=array('a','b');
        echo current($a);
        echo next($a);
        /*prev(array)    
        end(array)
        reset(array)    */
        ?>
        <?php
        /****
        布尔教育 高端PHP培训
        培  训: http://www.itbool.com
        论  坛: http://www.zixue.it
        ****/
        
            //41.数组常用函数
        //array_keys_exists判断存在键
        $arr=array('a'=>"ab",'b'=>"de",'c'=>null);
        if (array_key_exists('c', $arr)){
            echo "c 号村泰","<br>";
        }
        //判断值是否存在
        if(in_array('de', $arr)){
            echo 'de in $arr';
        }
        ?>
        <?php
        /****
        布尔教育 高端PHP培训
        培  训: http://www.itbool.com
        论  坛: http://www.zixue.it
        ****/
        $arr=array('a','b','c','d');
        echo array_push($arr, 'e')."<br>";//返回添加之后数组的长度
        echo array_pop($arr)."<br>";//删除最后一个元素
        echo array_unshift($arr, 'f');//添加到头部
        echo array_shift($arr);//弹出头部单元
        ?>
    </body>
</html>

/*************************************************************************/

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>新建网页</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="布尔教育 http://www.itbool.com" />
</head>
    <body>
        <?php
        /****
        布尔教育 高端PHP培训
        培  训: http://www.itbool.com
        论  坛: http://www.zixue.it
        ****/
        //超全局变量
        //_REQUEST[]既有get也有post的方法
        //获取客户端ip    $_SERVER['REMOTE_ADDR']
        print_r($_GET);
        print_r($_POST);
        echo $_SERVER['REMOTE_ADDR'];
        ?>

        <?php
        /****
        布尔教育 高端PHP培训
        培  训: http://www.itbool.com
        论  坛: http://www.zixue.it
        ****/
        
        //常量,定义之后不能修改,也不能销毁
        define('PI', 3.1415926);
        echo PI;
        //检测常量是否存在
        var_dump(defined('PI'));
        ?>

        <?php
        /****
        布尔教育 高端PHP培训
        培  训: http://www.itbool.com
        论  坛: http://www.zixue.it
        ****/
        $aa=1;
        //引入文件include
        include('array.php');
        include_once('23sub.php');
        include_once('23sub.php');

        //print_r ($arr);
        echo $aa;
        ?>
        <?php
        /****
        布尔教育 高端PHP培训
        培  训: http://www.itbool.com
        论  坛: http://www.zixue.it
        ****/
        
        //php错误报告设置
        
        
        ?>

    </body>
</html>




标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!