search
Homephp教程php手册PHP三元运算符的结合性介绍

PHP三元运算符的结合性介绍

Jun 13, 2016 pm 12:03 PM
echophpgenerallyintroducecodecopyofcombineOperationoperator

先看一个三元运算式子:

复制代码 代码如下:


$a=1;$b=2;$c=3;$d=4;
echo $a?>


一般按照其它语言(比如C或Java)的规则, 以上代码的运算逻辑是:

复制代码 代码如下:


$a true => 'xx' ==> 结束


那么最后得到的结果就是'xx', 而再往后的运算都会被无视.
然而令人吃惊的是, php运算以上代码最后得到的结果却是'zz'...我擦, 什么情况, 这不坑爹么...
老规矩, 只好求教谷歌酱, 结果被告知php的三元运算竟然是向左结合的...于是豁然开窍.
我给上面的代码加上两个括号:

复制代码 代码如下:


$a=1;$b=2;$c=3;$d=4;
echo (($a?>


一目了然了吧, 这才是php的运算逻辑:

复制代码 代码如下:


$a true => 'xx' => true => 'yy' => true => 'zz' => 结束


这其中涉及到两个类型转化的过程, 即 'xx' => true 和 'xx' => true.
不知这样的过程是否是蛋疼, 确实是让人很难理解...
最后再次回到上面的代码, 将其变为像C一样的向右结合吧:

复制代码 代码如下:


$a=1;$b=2;$c=3;$d=4;
echo $a// 括号换下位置就行了, php里括号省不得
?>

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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

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

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Atom editor mac version download

Atom editor mac version download

The most popular open source editor