Welcome to the Cookbook

loading...

Function Calls

Functions should be called without space between function's name and starting bracket. There should be one space between every parameter of a function call.

<?php 
$var = foo($bar, $bar2, $bar3); 
?>
  1. <?php
  2. $var = foo($bar, $bar2, $bar3);
  3. ?>

As you can see above there should be one space on both sides of equals sign (=).