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