php 类的属性和方法

class util_key

{

       //www.aerchi.com

       var $timePrefix = "20";


     function jiemi_wx_key($oriStr, $listType = null )

     {

           //使用类的其它方法

           $src_key = $this->encrypt_string($oriStr, 'D');


           // 使用类变量

           $this->timePrefix;


           //使用错误,$this-> 下无$ 符号
           //$this->$timePrefix; 

            ....

     } 


     function encrypt_string($oriStr, $listType = null )

     {     

           ... 

     } 

}


再如:

class test

   var $b;
   function test() { $this->b=5; }
   function addab($c) { return $this->b+$c; }
}
$a = new test(); 

echo $a->addab(4); // 返回 9

你可能感兴趣的:(php 类的属性和方法)