3 Simple variables and operatorsNOTE: This is NOT the latest copy of this book; click here for the latest version.
Once you are up and running with your own PHP programming, you will find that the majority of your scripts are variables, operators, and under ten functions that you use commonly.
In this chapter we will be looking at the different types of variables used in PHP, which to use and when, and also how to convert between the different types. We'll also be looking at operators - these are things that have any effect on variables, such as adding, subtracting, and multiplying.
This chapter is designed to give you complete information on how PHP's variables work - you need not understand some of the more complicated parts, such as references or variable variables, unless you really want full comprehension of the language.
The topics covered here are:
-
What types of data are available to you
-
References, typecasting, and variable variables
-
Script variables, pre-set variables, script constants, and pre-set constants
-
Operators such as plus, minus, multiply, and divide
|