No Description

ClientPolicy.class.php 351B

12345678910111213141516
  1. <?php
  2. class ClientPolicy {
  3. var $serverHost;
  4. var $httpPort = 80;
  5. var $httpsPort = 443;
  6. var $appKey;
  7. var $secKey;
  8. var $defaultContentCharset = "UTF-8";
  9. public function __construct($apiKey = '', $secKey = '', $serverHost = '') {
  10. $this->appKey = $apiKey;
  11. $this->secKey = $secKey;
  12. $this->serverHost = $serverHost;
  13. }
  14. }
  15. ?>