本文整理汇总了PHP中Generator::call方法的典型用法代码示例。如果您正苦于以下问题:PHP Generator::call方法的具体用法?PHP Generator::call怎么用?PHP Generator::call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Generator
的用法示例。
在下文中一共展示了Generator::call方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: closingComment
/**
* Adds the closing comment containing the tag id or class.
*
* @return void
*/
public function closingComment()
{
if (!empty($this->attributes['id'])) {
$hint = '#' . $this->attributes['id'];
} elseif (!empty($this->classes)) {
$hint = '.' . $this->classes[0];
} else {
return false;
}
Generator::call('il_comment', array($hint));
}
示例2: generate
/**
* Generates a default tag using the current module parameters.
*
* @return void
*/
public final function generate()
{
$options = array_merge($this->options, (array) 'generate');
Generator::call($this->called, $this->args, $options);
}