本文整理汇总了PHP中Annotation::export_class_annotation方法的典型用法代码示例。如果您正苦于以下问题:PHP Annotation::export_class_annotation方法的具体用法?PHP Annotation::export_class_annotation怎么用?PHP Annotation::export_class_annotation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Annotation
的用法示例。
在下文中一共展示了Annotation::export_class_annotation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: to_php
public function to_php()
{
$php = '';
if ($this->is_final()) {
$php .= 'final ';
}
if ($this->is_abstract()) {
$php .= 'abstract ';
}
$php .= "class {$this->name}";
if ($this->superclass) {
$php .= " extends {$this->superclass}";
}
if (!empty($this->interfaces)) {
$php .= " implements " . implode(', ', $this->interfaces);
}
$php .= " {\n";
foreach ($this->chunks as $chunk) {
if ($chunk === null) {
continue;
}
$php .= $chunk->to_php() . "\n";
}
$php .= "}\n";
if ($this->has_annotation()) {
$php .= Annotation::export_class_annotation($this) . "\n";
}
foreach ($this->methods() as $method) {
if ($method->has_annotation()) {
$php .= Annotation::export_method_annotation($this, $method) . "\n";
}
}
foreach ($this->variables() as $variable) {
if ($variable->has_annotation()) {
$php .= Annotation::export_variable_annotation($this, $variable) . "\n";
}
}
return $php;
}