Inheritance: extends yii\base\Component
Example #1
0
 /**
  * 增加微信基本链接
  * @inheritdoc
  */
 protected function httpBuildQuery($url, array $options)
 {
     if (stripos($url, 'http://') === false && stripos($url, 'https://') === false) {
         $url = self::WECHAT_BASE_URL . $url;
     }
     return parent::httpBuildQuery($url, $options);
 }