PHP tutorial-PHP operators

PHP operators



Assignment Operator


= sign is used as the assignment operator in PHP.

Example:

$yourage=18;
 

Arithmetic operators

Operator Description Example Result
+ Addition a=1+2 3
- Subtraction a=3-1 2
* Multiplication a=2*5 10
/ Division 10/2 5
% Modulus (division remainder) 10%2 0
++ Increment a=3 a++   a=4
-- Decrement a=3 a-- a=2

 

Comparison operators

Operator Description Example
== equal to 1==2 evaluated to false
!= not equal 1!=2 evaluated to true
> greater than 1>2 evaluated to false
< less than 1<2 evaluated to true
>= greater than or equal to 1>=2 evaluated to false
<= less than or equal to 1<=2 evaluated to true


Logical Operators

 
Operator Description Example
&& and x=1 y=2 (x < 5 && y > 1) evaluated to true
|| or x=1 y=2 (x>2 || y>1) evaluated to true
! not x=1 y=2 !(x==y) evaluated to true

 

Compound Operators

Operator Example The Same As
+= x+=y x=x+y
-= x-=y x=x-y
*= x*=y x=x*y
/= x/=y x=x/y
.= x.=y x=x.y
%= x%=y x=x%y


Sting concatenation operator (.)


Point (.) is used to concatenate strings or text
Example:
$yourname="Yuk"."Sovandara";




comment

Posted comments

san:

It is easy to follow PHP lessons.

03-15-2013

ukilik:

Thank u for useful web tips...

11-15-2012

maxxsaiyan123:

sap.net is so more comfortable for networking process in LAN .........
-----------------
MAURYA SOFTWARE
[url="http://mauryasoft.in] MAURYA SOFTWARE [/url]

10-29-2012

dano:

Good javascript tutorial
Thank

10-26-2012


...........................................................................................................Home | Forum | About | Contact
This website intents to provide free and high quality tutorials, examples, exercises and solutions, questions and answers of programming and scripting languages:
C, C++, C#, Java, VB.NET, Python, VBA,PHP & Mysql, SQL, JSP, ASP.NET,HTML, CSS, JQuery, JavaScript and other applications such as MS Excel, MS Access, and MS Word.
However, we don't guarantee all things of the web are accurate. If you find any error, please report it then we will take actions to correct it as soon as possible.
Copyright @ 2011-2013 worldbestlearningcenter. All Rights Reserved.
Computer-Wbest
Web Scripts Tips
Download
Related Posts