Difference between revisions of "PHP Operators"

From Techotopia
Jump to: navigation, search
(New page: Opertors in PHP, and any other prgramming language for that matter, enable us to perfrom tasks on variables and vales such as assign, multiply, add, subtract and concatenate them. Operator...)
 
Line 1: Line 1:
Opertors in PHP, and any other prgramming language for that matter, enable us to perfrom tasks on variables and vales such as assign, multiply, add, subtract and concatenate them. Operators take the form of symbols (such as + and -) and combinations of symbols (such as ++ and +=).
+
Opertors in PHP, and any other prgramming language for that matter, enable us to perfrom tasks on variables and values such as assign, multiply, add, subtract and concatenate them. Operators take the form of symbols (such as + and -) and combinations of symbols (such as ++ and +=).
  
 
Operators in PHP work with ''operands'' that specify the variables and values that are to be used in the particalar operation. The number and location of tyhese operands in relate to the operators (ie before and/or after the operator) depends on the type of operator in question. In this chapter of PHP Essentials we will exlore each type of operator and explain how they are used in relation to their operands.
 
Operators in PHP work with ''operands'' that specify the variables and values that are to be used in the particalar operation. The number and location of tyhese operands in relate to the operators (ie before and/or after the operator) depends on the type of operator in question. In this chapter of PHP Essentials we will exlore each type of operator and explain how they are used in relation to their operands.
  
 
== Assignment Operators ==
 
== Assignment Operators ==

Revision as of 19:16, 29 May 2007

Opertors in PHP, and any other prgramming language for that matter, enable us to perfrom tasks on variables and values such as assign, multiply, add, subtract and concatenate them. Operators take the form of symbols (such as + and -) and combinations of symbols (such as ++ and +=).

Operators in PHP work with operands that specify the variables and values that are to be used in the particalar operation. The number and location of tyhese operands in relate to the operators (ie before and/or after the operator) depends on the type of operator in question. In this chapter of PHP Essentials we will exlore each type of operator and explain how they are used in relation to their operands.

Assignment Operators