查看会员资料
- Email:用户隐藏
- Icq/MSN:qq
- 电话号码:
- Homepage:
- 会员简介:这家伙很懒,什么都没留下!
最新会员发布资源
index
- Example #1 抽象类代码示例 <?php abstract class AbstractClass { // 强制要求子类定义这些方法 abstract protected function getValue() abstract protected function prefixValue($prefix) // 普通方法(非抽象方法) public function printOut() { print $this