Home > Backend Development > PHP Tutorial > PHP Mobile Internet Development Notes (3) - Operator_PHP Tutorial

PHP Mobile Internet Development Notes (3) - Operator_PHP Tutorial

WBOY
Release: 2016-07-13 10:35:12
Original
768 people have browsed it

1. PHP operators

There is a rich set of operators in PHP, most of which come directly from the C language. According to different functions, operators can be divided into: arithmetic operators, string operators, assignment operators, bit operators, conditional operators, and logical operators. When various operators are in the same expression, their operations have a certain priority.

(1) Arithmetic operations

+ - * / % ++ --

(2) String operator

There is only one string operator. (dot) is the English period. It can concatenate strings to form a new string, or it can concatenate strings with numbers, and the types will be automatically converted.

	$a="dawanganban";  
$b="123";  
echo $a.$b;   //输出结果:dawanganban123  
Copy after login
(3) Assignment operator

	= += -= *= /= %= .=



$a="dawanganban";  
$a.=1;  
$a.=2;  
$a.=3;  
echo $a.$b;   //输出结果:dawanganban123  
Copy after login
(4) Bit operators ​ & | ~ ^ << >>

(5) Comparison operators

> < >= <= == != <> === !==

<>: is not equal to sum! =Same

===: Identity, the values ​​are equal and the types are consistent

! ==: non-identity, values ​​are not equal or types are inconsistent

  1. 	echo 5 == "5"; //true  PHP是弱类型语言(js中的变量类似)  
    echo 5 === "5";  //false  完全等于  
    Copy after login
(6) Logical operations

AND (logical AND) OR (logical OR) XOR (logical exclusive OR) && (logical AND) || (logical OR) ! (logical NOT)

	var_dump(5 && "");   //false  
var_dump(5 && "2"); //true  
var_dump(5 || ""); //true  
var_dump(0 xor 1); //true  
var_dump(0 xor 0); //false  
var_dump(1 xor 1); //false  
Copy after login


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/746361.htmlTechArticle1. PHP operators PHP has a rich set of operators, most of which come directly from the C language . According to different functions, operators can be divided into: arithmetic operators, string operations...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template