search
HomeBackend DevelopmentPHP TutorialSome problems of PHP in large website development_PHP tutorial
Some problems of PHP in large website development_PHP tutorialJul 13, 2016 pm 05:29 PM
phpexistLargepromotionEasy to useEase of useuseofwebsite developmentfastquestion

php以其易用性得到迅速的推广,但易用并不是说就能用好它,实际上许多程序员用它很容易的立一个个web应用系统,但又有多少人仔细的考虑过他们的代码,是否容易维护、是否足够健壮、否效率足够高、是否足够安全,当php用于建立大型网站时这些就成为很关键的因素。下面我们从较轻微的问题开始讨论,直至一些致命的错误。共分三部分。

  第一部分、较轻微的错误
  
  一、printf(),

    该函数主要用来格式化显示数据。当你要改变某个数据的显示格式时才使用。

  例如以不同的精度来显示pi(3.1415926)的值。

以下为引用的内容:
     /*
   * the three faces of π
   */
  
   printf ("pi is: %.2f
", m_pi);
   printf ("pi is also: %.3f
", m_pi);
   printf ("pi is also: %.4f
", m_pi);
  ?>

   但许多程序员仅仅为显示一些变量值和函数返回值使用该函数。因为printf()在显示数据前要先格式化该数据以速度较慢,因此,仅为了显示数据时应用print和echo,以提高速度。 字串6
  
  二、语意检查

  php是一种弱类型语言,也就是说在使用一个变量前不用定义,这样给编程带来了很大的方便和灵活,但你自己必须知道该变量到底应该是哪种类型,因为该变量在运行时仍实际对应着某一种类型(各种类型之间可以自由互相转换),没有类型的变量是不存在的。有可能php并不能检查出你的语意错误,但由于变量类型的变化,会导致一些潜在的问题的发生。另外一个值得注意的问题是变量的范围,它也可能会导致一些潜在的问题的发生。

  在php中有以下几种基本变量:

  boolean, resource, integer, double, string, array and object。
  
  三、临时变量的使用

    临时变量的滥用会导致程序运行效率的降低。何时使用临时变量可基于以下两点考虑:

  1、该变量是否至少使用两次。

  2、该变量的使用是否会显著提高程序的可读性。

  如果一条也不满足,则省略该变量的使用。例如:

以下为引用的内容:
     $tmp = date ("f d, h:i a"); /* ie january 3, 2:30 pm */
   print $tmp;
  ?>

  就应该改成:
 

以下为引用的内容:
     print date ("f d, h:i a");
  ?>

  又如:

以下为引用的内容:
    // string reverse_characters(string str)
  // reverse all of the characters in a string.
  function reverse_characters ($str)
  {
   return implode ("", array_reverse (preg_split("//", $str)));
  }
  ?>

is not very readable, it can be changed to:

以下为引用的内容:
    // string reverse_characters(string str)
  // reverse all of the characters in a string.
  function reverse_characters ($str)
  {
   $characters = preg_split ("//", $str);
   $characters = array_reverse ($characters);
  
   return implode ("", $characters);
  }
  ?>

4. Separation of client and server code

The client-side and server-side codes in the PHP program are actually HTML code and PHP language code. Many people mix HTML and PHP statements in one file, making the file very large. This style reduces the maintenance of the program. It is very unfavorable for development and redevelopment and is not suitable for the development of large-scale sites. There are generally two ways to separate html and php statements:

1. Write a dedicated API, such as:

index.php? the client side

以下为引用的内容:
 
 
 
  <?php print_header (); ?>
 
 
 


 
 
 
   
 
 

 
 

 
 

 
 



The following is the quoted content:

TABLE>

site.lib? the server side code






The following is the quoted content:

$dbh = mysql_connect ("localhost", "sh", "pass")
or die (sprintf ( "cannot connect to mysql [%s]: %s",
mysql_errno (), mysql_error ()));
@mysql_select_db ("mainsite")
or die (sprintf ("cannot select database [ %s]: %s",
mysql_errno (), mysql_error ()));

$sth = @mysql_query ("select * from site", $dbh)
or die (sprintf ("cannot execute query [%s]: %s", mysql_errno (), mysql_error ()));

$site_info = mysql_fetch_object ($sth); function print_header () { global $site_info; site_info; print nl2br ($site_info->body); } function print_links () { global $site_info; $links = explode (" ", $site_info->links);
$names = explode (" ", $site_info->link_names); for ($i = 0; $i http://www.bkjia.com/PHPjc/531681.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/531681.htmlTechArticlephp has been rapidly promoted for its ease of use, but ease of use does not mean that you can use it well. In fact, Many programmers use it to easily build web application systems, but how many people carefully consider...
<?php print_header (); ?>










< ;/td>


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment