search
HomeBackend DevelopmentPHP TutorialInventory of common mistakes in PHP programming, inventory of PHP programming_PHP tutorial

Inventory of common mistakes in PHP programming, inventory of PHP programming

Overview: This article takes stock of small mistakes and mistakes that PHP developers tend to ignore or not pay attention to when coding.

Variable declaration

If you declare a variable in a statement, as shown below: $var='value';The compiler will first find the value of the right half of the statement, and it is precisely this part of the statement that often causes errors. . If you use incorrect syntax, you will get a parsing error.

Parse error

For example, Parse error: unexpected T_WHILE in c:program filesapache groupapachehtdocsscript.php on line 19. Each time the previous error is determined, parse errors continue to appear one after another, PHP after the first parse error Just stop executing the script. Also, parsing errors have very little information, with almost no reporting of the line number where the error occurred. For example, a predefined keyword is used in the expression, for example: while=10; while is a predefined keyword and cannot be assigned a value. Predefined keywords include while, function, etc. We cannot use these predefined keywords to name variables, otherwise the compiler will report an error. Among them, T_IF represents if(), T_WHILE represents while(), T_FOR represents for(), etc.

Common mistakes

There are also some common errors, such as not ending the statement with a semicolon (;), missing quotation marks in the string, etc. In addition, if you do not use curly brackets (}) to end a function or a loop, for example: function UselessFunction(){for($iphp on line 9 Since the function UselessFunction does not end with a brace (}), the PHP compiler will continue to look for the closing brace until it is reached to the end of the file. Because the compiler does not find a matching brace, it will report an end-of-file error. If the code hierarchy is correctly reflected, error messages will become very obvious. Otherwise, the code will be very difficult to debug. Therefore, be sure to indicate the hierarchical structure of the code, which will make it easier for subsequent developers to improve the code.

MySQL error

Another type of error message is MySQL error, which often causes PHP novices to feel quite a headache, such as: Warning: Supplied argument is not a valid MySQL result resource in... The wrong line reported above may be: while($row=mysql_fetch_array($result)){}The parameter $result is not a valid resource, because the query fails and mysql_fetch_array cannot be processed. If the syntax of any query is invalid or the connection to the database fails, you should go to the MySQL console for testing.

Pay attention to the difference between echo and print

In PHP, both echo and print have output functions, but there are still subtle differences between them. There is no return value after echo output, but print has a return value, and it returns false when its execution fails. Therefore, it can be used as a normal function, for example, if $r=print "Hello World" is executed; the value of variable $r will be 1. Moreover, the echo statement in the code runs slightly faster than the print statement.

Pay attention to the difference between empty string ('') and NULL

Empty strings and NULL in PHP are both stored with a value of 0, but their types are different. The former is string, while the latter is NULL. It can be seen that string ('') and NULL values ​​are equal but of different types. .

Distinguish the difference between == (equal) and === (all equal)

Both are comparison operators. == (equal) only compares whether the values ​​are equal, while === (equal to all) not only compares whether the values ​​are equal, but also compares whether the types are equal. It is more strict.

Distinguish the difference between include and require

The functions of include() and require() are basically the same, but there are some differences in usage. include() conditionally includes the function, while require() unconditionally includes the function. For example, in the following code, if the variable $a is true, the file a.php will be included: if($a){include("a.php");} and require() is different from include() , no matter what value $a takes, the following code will include the file a.php: if($a){require("a.php");} In terms of error handling, use the include statement. If an inclusion error occurs, the program The include statement will be skipped and the program will continue executing although an error message will be displayed. However, the require statement prompts a fatal error.

Note the difference between isset and empty

Empty is to determine whether a variable is "empty", while isset is to determine whether a variable has been set.

Distinguish the difference between self:: and this-->

When accessing member variables or methods in a PHP class, if the referenced variable or method is declared as const (constant) or static (static attribute), then the domain operator must be used::, and if it is referenced The variable or method is not declared const or static, then use the pointer operator ->.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/966285.htmlTechArticleInventory of common mistakes in PHP programming, an overview of PHP programming: This article takes stock of things that PHP developers tend to ignore or do not do when coding Pay attention to the small mistakes and errors that arise. Variable declaration If in a statement...
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)”语句。

航拍无人机怎么选?大疆无人机盘点推荐航拍无人机怎么选?大疆无人机盘点推荐Jul 08, 2023 pm 01:13 PM

一直有人让推荐航拍无人机,其实无人机可选的品牌很少,对大多数摄影爱好者来说就一个—大疆大疆的无人机是目前无人机品牌中最成熟、最完善的无人机品牌,所以建议大家从大家中选。一、大疆无人机产品线大家目前有三条产品线:Mavic(御)系列、Phantom(精灵)系列、Inspire(悟)系列另外,还有一款穿越机。①DJIMavic系列:该系列和Phantom(精灵)系列被大家称之为“消费级”无人机,玩航拍摄影、拍视频的基本都是从这两个系列里选择。Mavic(御)系列又分有三个子系列:高端Pro系列、中端

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(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

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

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use