Template-engine/engine/Extend.php

17 lines
226 B
PHP

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