I know that echo will echo the content and return will return the contents for further processing. How ever, I have said function:
class Content{
protected $_html = '';
public function display_content(){
$this->_html = 'content';
}
public function __toString(){
return $this->html;
}
}
then some where I have the following:
$content = new Content();
<p><?php $content->disaply_content(); ?></p>
I get:
<p></p>
content
as the source code for the page. doesn't matter if I echo or just return, either way it displays out side the tag.
Ideas?