// Get the whole Joomla! application if you're not already doing so.
$app = JFactory::getApplication();
// Get the whole Joomla! application if you're not already doing so.
$app = JFactory::getApplication();
echo "<pre>" . print_r($params) . "</pre>"; |
// Shows human readable list of items in array | |
echo print_r($params); | |
// Shows list of items as well as their type e.g. boolean, integer, string... | |
echo var_dump($params); |