Expressions in PHP

Spread the love

This chapter is about expressions in PHP.

Anything which is having values we can call that as expressions in PHP.

Examples:
12
2+2
$b
$a = 10;

[ad name=”Responsive Text”]

 

Any expression which is terminated by semicolon in PHP is called as ‘Statement’.
In PHP programming, we use many statements to build complex and complete programs.


Spread the love

Leave a Comment