Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Wes Shell's Blog:
Quicky 1: PHP is Loosely Typed – What does that Mean?
Oct 09, 2009 @ 17:30:11

Wes Shell has posted a "PHP quicky" to his blog today looking at something at the core of the PHP language - its loosely-typed nature.

A loosely typed language such as PHP is a language that does not require you to declare a variable type when declaring a variable. What does that mean? In PHP when you declare a variable, you can with no need to worry about what kind of data will be stored in that variable.

He compares it to some of the other strictly-typed languages where the variable must be set up and cast to the type and the flexibility that having looser types can have over it. He also looks at some of the drawbacks (ex. can lead to bad code) and advantages (ex. highly dynamic, flexible applications) of this method.

tagged: loosely typed language opinion

Link:


Trending Topics: