Twitter For Webanddesigners
RSS For Webanddesigners

Introduction to PHP – Part 3

Operators

An operator is a type of function which acts on operands often called inputs and produce results. In PHP, there are three types of operators. Increment operator ++ and decrement operator — belongs to the first operator group called unary operator. Unary operator always acts on single operand. The second group called the binary operator acts on more than two operands. .The group is the ternary operator : ? :. This operator is used to select between two expressions depending upon the third one. These operators can be classified in the following ways based on the type of functionality they provides.

Arithmetic Operators

Operator Operation Example Result
++ Increment x=6
x++Here, x is called operand
x=7
Decrement x=2
x–
x=1
+ Addition 1+1 2
- Subtraction 2-1 1
* Multiplication 2*3 6
/ Division 3/2 1.5
% Modulus 3%2
5%3
6%2
1
2
0 We can notice that result is division remainder

Assignment Operators

Operator Example Assuming x=10 and y=5
= x=y x will be 5
+= x+=y Equivalent to x=x+y, hence x will be 15
-= x-=y Equivalent to x=x-y, hence x will be 5
*= x*=y Equivalent to x=x*y, hence x will be 50
/= x/=y Equivalent to x=x/y, hence x will be 2
.= x.=y Equivalent to x=x.y, hence x will be 105. More clearly, if x=23 and y =11, then x will be 2311
%= x%=y Equivalent to x=x%y, hence x will be 0

Comparison Operators

Operator Operation Returns TRUE if Returns FALSE if
== is equal to 2==2 1==2
!= is not equal 1!=2 2!=2
is greater than 2>1 1>2
is less than 1<2 2<1
>= is greater than or equal to 2>=1, 2>=2 1>=2
<= is less than or equal to 1<=2, 2<=2 2<=1

Logical Operators

Operator Operation Returns TRUE if Returns FALSE if
&& ANDReturns true only if the both expressions are true (2==2 && 1<2) (2==2 && 1>2)
|| ORReturns true if one of the expressions is true (2==2 && 1>2) (2!=2 && 1>2)
! NOTComplement the result of an expression !(2==3) !(2==2)

Operators Precedence and Associativity

The precedence of an operator specifies which operation is carried first. For example, the result of 2+5*2 is 12 not 14. Here multiplication is evaluated first followed by addition, hence, we say that operator “*” has higher precedence than operator “+”. In some cases parenthesis is used to force the precedence. For instance, the result from same expression with parenthesis like (2+5)*2 will produce result 14.

Associativity decides the order of evaluation of an expression if the operators have equal precedence. If a expression is evaluated from right we called right associativity and for left we say left associativity. The following table shows the precedence of operators having highest precedence. Operators having same associativity are listed in the same line. 

Operators

++ –
!
* / %
+ -
<< >>
< <= > >=



Related Posts


bookmark bookmark bookmark bookmark Subscribe to RSS


11 Comments »

  1. Nice list! However, the Comparison Operator == is incorrect in your example…

  2. BRD says:

    Thank you Mr. Waters for pointing out the mistake. It has already been corrected.

  3. Nice php tutorial for newbies. Thanks for sharing this nice post. :)

  4. bab says:

    I found a great article about PHP for newbies

    visit
    http://www.cbabeesh.blogspot.com/

Trackbacks

  1. Introduction to PHP – Part 3 | Programming Blog
  2. Introduction to PHP – Part 3 « rockweb
  3. Introduction to PHP – Part 3 | Web and designers | Helping web … | Work4Real | Blogs search
  4. 55+ More Great Community Links for Designers and Developers | tripwire magazine
  5. 55+ More Great Community Links for Designers and Developers | Programming Blog
  6. 55+ More Great Community Links for Designers and Developers | Master Design
  7. Favorites From The Feeds #1: All The Stuffs You Need | AEXT.NET

RSS feed for comments on this post. TrackBack URL

Leave a comment

Spam Protection by WP-SpamFree