Written by James McDonald

October 3, 2012

I have been trying to learn CakePHP which is a Model View Controller PHP development framework.

But in the process I’m having to learn PHP and have discovered some interesting stuff.

My first ow wow that’s interesting moment was that class and function names are case-insensitive.

So when it comes to these things camelCase isn’t really necessary.

You can call a function:

myfunction();

myFunction();

MYFUNCTION();

And it works.

However variable names are case sensitive so:

$myvariable;

$MyVariable;

$MYVariable;

are all different.

These small things are good to know when you start with PHP.

 

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Network speed test host to host

On Ubuntu / Debian apt-get install iperf3 On Windows download it from https://iperf.fr/iperf-download.php#windows Make...

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...