I am wondering if this is legal:
<?php is_null ( $var );
Or perhaps this:
<?php $items = array ( "Details" => array('controller' => 'event', 'action' => 'readall', 'tab' => 'details'), "Calendar" => array('controller' => 'event', 'action' => 'readall', 'tab' => 'calendar') );
Or will some translators suffocate?
I know that the popular mixed style of classes and functions has an open curly figure on a new line and control structures such as "if" in one line. However, I like all this or that. New line or new line. It would be nice to extend the concept to function calls and their brackets. This is the reason for my question.
source share