5 Star 15 Fork 9

Gitee 极速下载/Yaf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/laruence/yaf
克隆/下载
yaf_view.stub.php 1.88 KB
一键复制 编辑 原始数据 按行查看 历史
惠新宸 提交于 2024-06-26 16:55 . Fixed arginfo mismatch
<?php
/** @generate-legacy-arginfo */
Interface Yaf_View_Interface {
/**
* @return Yaf_View_Interface|bool
*/
public function assign(string $name, mixed $value = NULL);
/**
* @return string|bool
*/
public function render(string $tpl, ?array $tpl_vars = NULL);
/**
* @return Yaf_View_Interface|bool
*/
public function display(string $tpl, ?array $tpl_vars = NULL);
/**
* @return bool
*/
public function setScriptPath(string $template_dir);
/**
* @return string
*/
public function getScriptPath();
}
final class Yaf_View_Simple implements Yaf_View_Interface {
/* constants */
/* properties */
protected ?array $_tpl_vars = NULL;
protected ?string $_tpl_dir = NULL;
protected ?array $_options = NULL;
/* methods */
public function __construct(string $tempalte_dir, ?array $options = NULL) {}
public function __isset(string $name):bool {}
public function get(?string $name = NULL):mixed {}
/**
* @return Yaf_View_Simple|NULL|FALSE
*/
public function assign(mixed $name = NULL, mixed $default = NULL):object|null|false {}
public function render(string $tpl, ?array $tpl_vars = NULL):null|string|false {}
public function eval(string $tpl_str, ?array $vars = NULL):null|string|false {}
public function display(string $tpl, ?array $tpl_vars = NULL):?bool {}
/**
* @return Yaf_View_Simple|NULL
*/
public function assignRef(?string $name = NULL, mixed &$value):?object {}
/**
* @return Yaf_View_Simple|NULL
*/
public function clear(?string $name = NULL):?object {}
/**
* @return Yaf_View_Simple|NULL|FALSE
*/
public function setScriptPath(string $template_dir):object|null|bool {}
public function getScriptPath():?string {}
/** @implementation-alias Yaf_View_Simple::get */
public function __get(string $name):mixed {}
/** @implementation-alias Yaf_View_Simple::assign */
public function __set(string $name, mixed $value):void {}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/Yaf1.git
git@gitee.com:mirrors/Yaf1.git
mirrors
Yaf1
Yaf
master

搜索帮助