Core PHP Function calls from PHP Objects

This page demonstrates a Hashtag Framework Core PHP function call from a new PHP Object.  
Processing this Hashtag Markup:
<?php

class custom_object {
	public function __construct() {
		$my_array = array('key'=>'value');
		hashtag_html_dump($my_array, 'Label for My Array');
	}
}

$my_object = new custom_object();

?>
Label for My Array: Array
(
    [key] => value
)



The Hashtag Framework supports PHP code alongside Hashtag Markup.

The examples in this section demonstrate the many Hashtag Framework Core PHP Functions that are callable from any PHP code.