Maison > php教程 > php手册 > le corps du texte

提高PHP编程技术的方法

WBOY
Libérer: 2016-06-06 19:45:08
original
908 Les gens l'ont consulté

提高PHP编程技术的方法 下面介绍的是提高PHP编程技术的几种方法。 2、PHP代码的调试 有时我们运行PHP代码的时候会碰到问题并且我们不知道这问题究竟出在哪儿。而PHP中专门有个error_reporting() 函数,它可以告诉你你的代码中的每一处错误。如果你希望它显示

提高PHP编程技术的方法

 

  下面介绍的是提高PHP编程技术的几种方法。

 

 

 

  2、PHP代码的调试

 

  有时我们运行PHP代码的时候会碰到问题并且我们不知道这问题究竟出在哪儿。而PHP中专门有个error_reporting() 函数,它可以告诉你你的代码中的每一处错误。如果你希望它显示页面的所有可能出现的错误信息,可以将下面这句代码放在文件的第二行:

 

  error_reporting(E_ALL);

 

  3、使用注释

 

  如果你的PHP代码有1200行,那么要搞明白它要做什么是一件很困难的事,解决这个问题的办法就是为你的代码加上注释。

 

  有三中方法在PHP中添加注释: PHP程序员站

 

  以下为引用的内容:

 

  

 

  // 你的注释//

 

  # 你的注释

 

  /*你的注释 */

 

  ?>

 

  4、PHP代码的缩进

 

  以下为引用的内容:

 

  

 

  // Settings //

 

  $var1 = "This";

 

  // Showing Variables //

 

  if($var1 == "This"){

 

  echo"You said This";

 

  }else{

 

  echo"You said That";

 

  www.phperz.com

 

  }

 

  ?>

 

  5、修正你的PHP文件包含方式

 

  PHP代码中,包含另外一个文件之前都会先确定它存在,如下例:http://www.pprar.com

 

  以下为引用的内容:

 

  

 

  if(!file_exists("layout.inc.php")){exit("Error : LayOut File Missing");}

 

  else{include_once("layout.inc.php");}

 

  ?>

 

  6、数据库查询

 

  有时你的PHP代码中包含着于数据库的连接,你可能会遇到一些小麻烦,大部分容易出现数据库问题的人都是以这样的形式来写代码的:

 

  以下为引用的内容:

 

  

 

  mysql_query("INSERT INTO tableName ('id','name') VALUES('1','Mike')");

 

  ?>

 

  运行之后他发现数据并没有插入到数据库中,我们可以这样来解决这个问题: PHP程序员站

 

  以下为引用的内容:

 

  

 

  mysql_query("INSERT INTO tableName ('id','name') VALUES('1','Mike')")

 

  or exit("MySQL Error : " . mysql_error());

 

  ?>

 

  7、缩略类似IF-THEN的语句

 

  假如你接收一个注册页面传递的数据,而你想保证所有信息都已填写,你可能会用包含很多IF-THEN格式的语句,象下面这个:

 

  以下为引用的内容:

 

  

 

  if(!$_POST[name]){exit("Sorry, but you did not fill-in all of the requested fields.");}

 

  if(!$_POST[email]){exit("Sorry, but you did not fill-in all of the requested fields.");}

 

  ?>

 

  而实际上你可以通过合并这两行的IF-THEN语句使它只有一行:

 

  以下为引用的内容:

 

  

 

  if((!$_POST[name]) || (!$_POST[email]))

 

  {exit("Sorry, but you did not fill-in all of the requested fields.");}

 

  ?>

 

  ||和OR,&&和AND分别具有相同的意义。

 

  8、使用echo还是print?

 

  大部分人会说“echo和print是相同的”,我同意这个观点。不过echo的运行速度要比print快很多,并且比print少一个字母。echo命令比print出现得晚一些(我这样认为),显然你知道该如何选择了。

 

  9、不时输入一大段HTML语言

 

  我相信很多人都有解决这个的办法,但是我还是想和你说说解决这个的一些办法。

 

专业)。

 

  ⑵、在每句HTML代码中都加入反斜线(这样是可行的,但是你一直要这样—每一句都要)。

 

  ⑶、使用echo或者print命令,仅此而已(推荐): PHP源码下载down.phperz.com

 

  以下为引用的内容:

 

  

 

  // Showing a huge chunk of HTML at a time //

 

  echo

 

  Large, Orange Text in Font Size 3

 

  

 

  More HTML down here..

 

  

 

  

Centered text

 

  END;

 

  ?>

 

  希望通过以上内容的介绍,能够给你带来帮助。

 

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal