fenom/sandbox/fenom.php

25 lines
498 B
PHP
Raw Normal View History

2013-07-22 18:03:43 +04:00
<?php
namespace Ts {
class Math {
public static function multi($x, $y) {
return $x * $y;
}
}
}
2013-08-11 19:55:30 +04:00
namespace {
2014-04-17 23:50:18 +04:00
require_once __DIR__.'/../src/Fenom.php';
\Fenom::registerAutoload();
2013-08-11 19:55:30 +04:00
$fenom = Fenom::factory(__DIR__.'/templates', __DIR__.'/compiled', Fenom::FORCE_COMPILE);
2014-04-10 01:49:15 +04:00
$fenom->display("extends/75-child.tpl", array(
"user" => array(
"name" => "Ivka",
'type' => 'new'
),
2013-09-02 17:40:58 +04:00
'type' => 'new'
));
}