Framework Core PHP Function calls from PHP Functions

This page demonstrates Hashtag Framework Core PHP functions being called from a user defined function.   Functions must be defined before they can be called.  
Processing this Hashtag Markup:
<?php

function my_test() {
	$test = 'value';
	hashtag_html_dump($test, 'label');
}

my_test();

?>
label: 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.