Template-engine/template/Extend.php

17 lines
228 B
PHP

<?php
namespace template;
class Extend
{
public $tags = [
'say' => ['attr' => 'what', 'close' => 0]
];
public function _say($tag)
{
return '<?php echo \''. $tag['what'] .'\'; ?>';
}
}