I am very new to Joomla, and I am trying to get the output of a <jdoc:include /> tag in PHP before the page is rendered.
My menu is included like this: <jdoc:include type="modules" name="main menu" />
I am trying to count the <li> tags within the main menu. I have it setup like this:
$str = <<< HTML
<jdoc:include type="modules" name="main menu" />
HTML;
$count = substr_count($str, '<li>');
echo $count;
echo $str;
The menu echoes like normal, but $count is always 0, like it hasn't parsed yet.
