I am working through a book on object oriented PHP and have noticed the author using the complex syntax in some instances. In the chapter on inheritance he uses the code below:
// Declare the getSummaryLine() method
function getSummaryLine() {
// Define what the getSummaryLine() method does
$base = "$this->title ( {$this->producerMainName}, ";
$base .= "{$this->producerFirstName} )";
return $base;
}
My question is, why wouldn't you just use:
// Declare the getSummaryLine() method
function getSummaryLine() {
// Define what the getSummaryLine() method does
return "$this->title ( $this->producerMainName, $this->producerFirstName )";
}
As both seem to return the same thing?
Forgive me if this is painfully obvious. I have read up on the PHP complex syntax in the manual but it didn't make things any clearer for me. Is it a security issue, style choice or something else entirely?
I have read up on the PHP complex syntax in the manual but it didn't make things any clearer for me.Do you struggle to understand parts of the documentation? If so, ask a question about that. – phant0m Nov 25 '12 at 18:25title... – phant0m Nov 25 '12 at 18:27$this->title, an opening parenthesis,$this->producerMainName, a comma,$this->producerFirstName, a closing parenthesis. – phant0m Nov 25 '12 at 21:25