您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
313B

  1. <?php
  2. namespace Framework\View;
  3. use Framework\View\Engine\Engine;
  4. class View
  5. {
  6. public function __construct(
  7. protected Engine $engine,
  8. public string $path,
  9. public array $data = [],
  10. ) {}
  11. public function __toString()
  12. {
  13. return $this->engine->render($this);
  14. }
  15. }

Powered by TurnKey Linux.