Developer Forums | About Us | Site Map
Search  
HOME > TUTORIALS > SERVER SIDE CODING > PHP TUTORIALS > PHP VARIABLES


Sponsors





Useful Lists

Web Host
site hosted by netplex

Online Manuals

PHP Variables
By Gagandeep Singh Tathgar - 2007-10-01 Page:  1

Using PHP Variables

While working with any language we make use of variables. Variables are used to store values and reuse them in our code. We use different types of variables in our code such as strings (text), integers (numbers), floats (decimal numbers), boolean (true or false) and objects. In PHP we can make use of variable while writing scripts. In this lesson we're going to cover PHP variables.

What is a variable?

A variable is a mean to store values such as strings, integers or decimals so we can easily reuse those values in our code. For example, we can store a string value such as "I Love PHP" or an integer value of 100 into a variable.

PHP Variable Syntax

$var_name = value;

Defining Variable in PHP?

Here is an example of how to declare a variable in PHP.

Some key points to notice:

- Remember to put the $ sign in front of variables when declaring variables in PHP.

- Variable names must start with letters or underscore.

- Variables can’t include characters except letters, numbers or underscore.

PHP variable types?

Unlike Java or C++, PHP doesn't care about primitive types. Any variable, either a string, an integer or a float is declared the same way. PHP converts the types in the code by itself. Here's what I mean.

//an integer variable $var_name = 100;

//an float variable $var_name = 100.00 ?>

PHP Variable type juggling

Like mentioned above, PHP doesn't require variables to declared using primitive types. Therefore, juggling between two types doesn't require use of any special function. We can simply do things like...

//string var $var = "0";

//var is now float $var += 2.5;

//var is now integer $var += 2;

//var is now string $var .= " is the total"; echo $var;

?>

Concatenating variables in PHP?

In PHP we can join two variables by using the dot '.' operator.

$var1 = "I Love PHP"; $var2 = " and Java";

//prints "I Love PHP and Java" echo $var1 . $var2;

$var1 = "1"; $var2 = "2";

//prints "12"; echo $var1 . $var2;

?>

So there you have it, a quick and easy variable lesson in PHP.



View PHP Variables Discussion

Page:  1 Next Page: Using PHP Variables


Copyright 2004-2024 GrindingGears.com. All rights reserved.
Article copyright and all rights retained by the author.