コード例 #1
0
   public function __construct($url=NULL,$outputType=NULL)
        {
	            if($outputType == NULL) $this->output_type = 'xml';
	            else $this->output_type='json';
	         
                parent::new_request(($url?$url:self::$api_url));
	}
コード例 #2
0
        public function __construct($url=NULL)
        {
                $this->output_type = 'xml';
                parent::new_request(($url?$url:self::$api_url));
	}
コード例 #3
0
ファイル: rxNormApi.php プロジェクト: songhongji/gaiaehr
 public function __construct($url = null)
 {
     $this->output_type = 'xml';
     parent::new_request($url ? $url : self::$api_url);
     //	self::discover_api();
 }
コード例 #4
0
ファイル: ndfRTApi.php プロジェクト: redcap3000/rxNormRef_php
	public function __construct($url=NULL)
	{
		parent::new_request(($url?$url:self::$api_url));
	}