简单人生
幻想指点江山,梦中激扬文字
PHP代码
  1. <?php  
  2.   
  3. Class Aspire      
  4. {  
  5.     private $outPut = '';  
  6.     static public function cin ( $str ){  
  7.         ifstrToLower$str ) == 'sweat'){  
  8.             self::$outPut = 'Gains';  
  9.         }else{  
  10.             self::$outPut = 'Without Something';  
  11.         }  
  12.     }  
  13.   
  14.     static public function cout (){  
  15.         echo( self::$outPut );  
  16.         self::$outPut = NULL;  
  17.     }  
  18. }  
  19. Aspire::cin('sweat');  
  20. Aspire::cout();  
  21. Aspire::cin('laugh');  
  22. Aspire::cout();  
  23. ?>  
posted on 2008-11-07 11:32 简单人生 阅读(71) 评论(0)  编辑 收藏 引用
只有注册用户登录后才能发表评论。