예제 #1
0
파일: t_test.php 프로젝트: ramon82/t.php
    {{user.display_name}}
        <p>Bacon ipsum {{=user.display_name}}?</p>
    {{:user.display_name}}
        This should not be here.
    {{/user.display_name}}

    {{not_a_value}}
        This should not be here.
    {{:not_a_value}}
        <p>Yes bacon ipsum {{=user.display_name}}!</p>
    {{/not_a_value}}

    {{@user.prefs}}

        <p><span>{{=_key}}</span>{{=_val}}</p>

    {{/@user.prefs}}

    <h4>Test Values</h4>
    {{@test_values}}

        <p>{{=_key}}<span id="{{=_key}}" data-val="{{%_val}}">{{=_val}}</span></p>

    {{/@test_values}}
');
echo $template->parse(array('greeting' => "Welcome!", 'user' => array('display_name' => "Jason", 'address' => "111 State St, Ithaca,<script>alert(1);<\\/script> NY 14853", 'friends' => array(array('name' => "Kunal", 'url' => "http://whatspop.com"), array('name' => "Francisco", 'url' => "http://smalldemons.com"), array('name' => "Nick", 'url' => "http://milewise.com")), 'prefs' => array('Notifications' => "Yes!", '"Stay logged in"' => "No")), 'test_values' => array("true" => true, "false" => false, "zero" => 0, "string_zero" => "0", "null" => null)));
?>
</body>
</html>