Skip to Content
Programming PHP, 3rd Edition
book

Programming PHP, 3rd Edition

by Rasmus Lerdorf, Kevin Tatroe, Peter MacIntyre
February 2013
Intermediate to advanced
538 pages
20h 55m
English
O'Reilly Media, Inc.
Content preview from Programming PHP, 3rd Edition

Expressions and Operators

An expression is a bit of PHP that can be evaluated to produce a value. The simplest expressions are literal values and variables. A literal value evaluates to itself, while a variable evaluates to the value stored in the variable. More complex expressions can be formed using simple expressions and operators.

An operator takes some values (the operands) and does something (for instance, adds them together). Operators are written as punctuation symbols—for instance, the + and familiar to us from math. Some operators modify their operands, while most do not.

Table 2-3 summarizes the operators in PHP, many of which were borrowed from C and Perl. The column labeled “P” gives the operator’s precedence; the operators are listed in precedence order, from highest to lowest. The column labeled “A” gives the operator’s associativity, which can be L (left-to-right), R (right-to-left), or N (nonassociative).

Table 2-3. PHP operators

P

A

Operator

Operation

21

N

clone, new

Create new object

20

L

[

Array subscript

19

R

~

Bitwise NOT

 

R

++

Increment

 

R

−−

Decrement

 

R

(int), (bool), (float), (string), (array), (object), (unset)

Cast

 

R

@

Inhibit errors

18

N

instanceof

Type testing

17

R

!

Logical NOT

16

L

*

Multiplication

 

L

/

Division

 

L

%

Modulus

15

L

+

Addition

 

L

Subtraction

 

L

.

String concatenation

14

L

<<

Bitwise shift left

 

L

>>

Bitwise shift right

13

N

<, <=

Less than, less than or equal

 

N

>, >=

Greater than, greater than or equal

12

N

==

Value equality

 

N

!=, <>

Inequality

 

N

===

Type and value equality

 

N

!==

Type and value inequality

11

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Programming PHP, 2nd Edition

Programming PHP, 2nd Edition

Rasmus Lerdorf, Kevin Tatroe, Peter MacIntyre
Programming PHP, 4th Edition

Programming PHP, 4th Edition

Kevin Tatroe, Peter MacIntyre
PHP 8 Basics: For Programming and Web Development

PHP 8 Basics: For Programming and Web Development

Gunnard Engebreth, Satej Kumar Sahu

Publisher Resources

ISBN: 9781449361068Errata Page