Difference between revisions of "PHP Operators"

From Techotopia
Jump to: navigation, search
(PHP String Operators)
(PHP String Concatenation Operator)
Line 48: Line 48:
  
 
== PHP String Concatenation Operator ==
 
== PHP String Concatenation Operator ==
 +
 +
the PHp String Concatenation operator is used to cobine values to create a string. The concatenator operator is represented by a period (.) and can be used to build a string from other strings, variables containing non-strings (such as numbers), numbers and even constants:
 +
 +
<pre>
 +
 +
</pre>

Revision as of 20:55, 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.

PHP Assignment Operators

The assignment operator is used to assign a value to a variable and is represented by the equals (=) sign. The assignment operator can be combined with arithmetic operators to combine an assignment with a mathemtatical operation (for example to multiple one value by another and assigning the result to the variable.

The following table lists the seven assigmnet operators available in PHP, togetehr with descriptions and examples of their use:

OperatorTypeDescriptionExample
=AssignmentSets the value of the left hand operand to the value of the right $myVar = 30;
+=Addition-AssignmentAdds the value of left hand operand to the value of the right hand operand and assigns result to left hand operand$myVar = 10;
$myVar += 5;
-=Subtraction-AssignmentSubtracts the value of right hand operand from the value of the left hand operand and assigns result to left hand operand$myVar = 10;
$myVar -= 5;
*=Multiplication-AssignmentMultiplies the left hand operand by value of the right hand operand assigning result to left hand operand$myVar = 10;
$myVar *= 5;
/=Division-AssignmentDivides the left hand operand by value of the right hand operand assigning result to left hand operand$myVar = 10;
$myVar /= 5;
%=Modulo-AssignmentSets the value of the left hand operand to the remainder of the value after being divided by the right hand operand$myVar = 10;
$myVar %= 5;
.=Concatenation-OperandSets the value of the left hand operand to a string containing a concatenation of its value appended with the string in the right hand operand$sampleString="My color is ";
$sampleString += "blue";

PHP Arithmetic Operators

As the name suggests PHP arithmetic operators provide a mecahnism for performing mathematical operations:

OperatorTypeDescriptionExample
+AdditionCalculates the sum of two operands $total = 10 + 20;
-SubtractionCalculates the difference between two operands $total = 10 - 20;
*MultiplicationMultiplies two operands $total = 10 * 20;
/DivisionDivides two operands $total = 10 / 20;
%ModulusReturns the reminader from dividing the first operand by the second $total = 20%10;

PHP String Concatenation Operator

the PHp String Concatenation operator is used to cobine values to create a string. The concatenator operator is represented by a period (.) and can be used to build a string from other strings, variables containing non-strings (such as numbers), numbers and even constants: