publicED_KEY,$this->APP_KEY, $this->VERSION, $this->SIGN, $this->METHOD, $this->FORMAT, $this->LOCALE, $this->SESSION_ID, $this->CUSTOMER_NO, $this->ENCRYPT, $this->SIGN_RETURN, $this->TIMESTAMP ); } public function __set($name, $value){ // TODO: Implement __set() method. $this->$name = $value; } public function __get($name){ // TODO: Implement __get() method. return $this->$name; } public function getSecret(){ if(!empty($this->appKey) && strlen($this->appKey) > 0){ return $this->aesSecretKey; }else{ return $this->hmacSecretKey; } } public function ispublicedKey($key){ if(in_array($key,$this->publicED_KEY)){ return true; } return false; } }