PHP Web概念

PHP Web概念

本课程演示了PHP如何根据浏览器类型、随机生成的数字或用户输入提供动态内容。它还演示了客户端浏览器如何被重定向。

识别浏览器和平台

PHP创建了一些有用的环境变量,可以在用于设置PHP环境的phpinfo.php页面中看到。

PHP设置的其中一个环境变量是HTTP_USER_AGENT,用于识别用户的浏览器和操作系统。

PHP提供了一个getenv()函数来访问所有环境变量的值。HTTP_USER_AGENT环境变量中包含的信息可以用于创建适合该浏览器的动态内容。

以下示例演示了如何识别客户端浏览器和操作系统。

注意 - preg_match()函数在PHP正则表达式部分进行了讨论。

<html>
   <body>

      <?php
         function getBrowser() { 
            u_agent =_SERVER['HTTP_USER_AGENT']; 
            bname = 'Unknown';platform = 'Unknown';
            version = "";

            //First get the platform?
            if (preg_match('/linux/i',u_agent)) {
               platform = 'linux';
            }elseif (preg_match('/macintosh|mac os x/i',u_agent)) {
               platform = 'mac';
            }elseif (preg_match('/windows|win32/i',u_agent)) {
               platform = 'windows';
            }

            // Next get the name of the useragent yes seperately and for good reason
            if(preg_match('/MSIE/i',u_agent) && !preg_match('/Opera/i',u_agent)) {bname = 'Internet Explorer';
               ub = "MSIE";
            } elseif(preg_match('/Firefox/i',u_agent)) {
               bname = 'Mozilla Firefox';ub = "Firefox";
            } elseif(preg_match('/Chrome/i',u_agent)) {bname = 'Google Chrome';
               ub = "Chrome";
            }elseif(preg_match('/Safari/i',u_agent)) {
               bname = 'Apple Safari';ub = "Safari";
            }elseif(preg_match('/Opera/i',u_agent)) {bname = 'Opera';
               ub = "Opera";
            }elseif(preg_match('/Netscape/i',u_agent)) {
               bname = 'Netscape';ub = "Netscape";
            }

            // finally get the correct version number
            known = array('Version',ub, 'other');
            pattern = '#(?<browser>' . join('|',known) . ')[/ ]+(?<version>[0-9.|a-zA-Z.]*)#';

            if (!preg_match_all(pattern,u_agent, matches)) {
               // we have no matching number just continue
            }

            // see how many we havei = count(matches['browser']);

            if (i != 1) {
               //we will have two since we are not using 'other' argument yet

               //see if version is before or after the name
               if (strripos(u_agent,"Version")u_agent,ub)){version= matches['version'][0];
               }else {version= matches['version'][1];
               }
            }else {version= matches['version'][0];
            }

            // check if we have a number
            if (version == null || version == "") {version = "?";}
            return array(
               'userAgent' => u_agent,
               'name'      =>bname,
               'version'   => version,
               'platform'  =>platform,
               'pattern'   => pattern
            );
         }

         // now try itua = getBrowser();
         yourbrowser = "Your browser: " .ua['name'] . " " . ua['version'] .
            " on " .ua['platform'] . " reports: <br >" . ua['userAgent'];

         print_r(yourbrowser);
      ?>

   </body>
</html>

这在我这台机器上产生了以下结果。这个结果可能因为你所使用的电脑而有所不同。

它将会产生以下结果 –

Your browser: Google Chrome 54.0.2840.99 on windows reports: 
Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) 
   Chrome/54.0.2840.99 Safari/537.36

随机显示图片

PHP的 rand() 函数用于生成随机数。这个函数可以在给定的范围内生成数字。为了防止生成一串规律的数字,随机数发生器应该设定一个种子数。可以使用 srand() 函数来指定种子数作为其参数。

下面的示例演示了如何每次显示不同的四张图片之一:

<html>
   <body>

      <?php
         srand( microtime() * 1000000 );
         num = rand( 1, 4 );

         switch(num ) {
            case 1: image_file = "/php/images/logo.png";
               break;

            case 2:image_file = "/php/images/php.jpg";
               break;

            case 3: image_file = "/php/images/logo.png";
               break;

            case 4:image_file = "/php/images/php.jpg";
               break;
         }
         echo "Random Image : <img src=$image_file />";
      ?>

   </body>
</html>

它将产生以下结果−

PHP Web概念

使用HTML表单

处理HTML表单和PHP时,最重要的是要注意,在HTML页面中的任何表单元素都会自动可供您的PHP脚本使用。

尝试下面的示例,将源代码放在test.php脚本中。

<?php
   if( _POST["name"] ||_POST["age"] ) {
      if (preg_match("/[^A-Za-z'-]/",_POST['name'] )) {
         die ("invalid name and name should be alpha");
      }

      echo "Welcome "._POST['name']. "<br />";
      echo "You are ". _POST['age']. " years old.";

      exit();
   }
?>
<html>
   <body>

      <form action = "<?php **_PHP_SELF** ?>" method = "POST">
         Name: <input type = "text" name = "name" />
         Age: <input type = "text" name = "age" />
         <input type = "submit" />
      </form>

   </body>
</html>

它将产生如下结果 –

PHP Web概念

  • PHP的默认变量 $_PHP_SELF 用于PHP脚本的名称,当您单击“提交”按钮时,将调用同一PHP脚本并生成以下结果−

  • method = “POST”用于向服务器脚本提交用户数据。本章讨论了两种将数据提交到服务器脚本的方法。 PHP GET & POST

浏览器重定向

PHP的 header() 函数提供原始的HTTP头文件发送给浏览器,可用于将其重定向到另一个位置。重定向脚本应放在页面的最上方,以防止页面的其他部分加载。

目标由 Location: 头文件作为 header() 函数的参数指定。调用此函数后,可使用 exit() 函数停止解析其余代码。

以下示例演示如何将浏览器请求重定向到另一个网页。将源代码放入test.php脚本中以尝试这个示例。

<?php
   if( _POST["location"] ) {location = _POST["location"];
      header( "Location:location" );

      exit();
   }
?>
<html>
   <body>

      <p>Choose a site to visit :</p>

      <form action = "<?php **$_SERVER['PHP_SELF']** ?>" method ="POST">
         <select name = "location">.

            <option value = "http://www.tutorialspoint.com">
               Tutorialspoint.com
            </option>

            <option value = "http://www.google.com">
               Google Search Page
            </option>

         </select>
         <input type = "submit" />
      </form>

   </body>
</html>

它将产生以下结果−

PHP Web概念

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程