summaryrefslogtreecommitdiff
path: root/demo/templates/index_view.php
blob: ad760aa1707cfee0209abc77579fcfa54cf932c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
PHP file test
$foo is <?=$foo?>
<br> Test modifier chaining
<?=$foo->trim()->escape('html')?>
<br>Test objects
<?=$person->setName('Paul')->setAge(39)->introduce()->trim()->truncate(10)?>
<br>Test Arrays
<?=$array['a']['aa']->truncate(5)?><?=$array['b']?>
<br>Function
<?=$_f->trim($array['a']['aa'])->truncate(10)?>
DONE