@abstract

abstract 有“抽象”的意思,使用 @abstract 声明函数或者类(class),或者是必须经由子类重写才有效的抽象类

@abstract 标签只在有 abstract 关键词的 PHP4 和 PHP5 中有效

代码示例


<?php
/**
 * Example of basic @abstract usage in a class
 * Use this if every single element of the class is abstract 
 * @abstract
 */
class myabstractclass
{
  function 
function1($baz)
  {
    
//...
  
}

  function 
function2()
  {
    
//...
  
}
}
?>