不知你有和框架生成的WSDL 绑定的调用地址不能访问  导致调用失败
但是你可以手动指定 则可以调用成功
<?php

$url = "http://222.66.83.20:8083/WeatherWebService/WebService/ForecasProtService.asmx?wsdl";
$param = array(
'Frequency' => 1,
'BigPeriodType' => 1,
'DateTimeStart' => '2014-08-11',
'DateTimeEnd' => '2014-08-11 23:59:00',
'Verification' => 'CenterAQIPeriod2014'
);
$client = new SoapClient($url,array('location' => "http://222.66.83.20:8083/WeatherWebService/WebService/ForecasProtService.asmx"));
$response = $client->__call("GetCenterPeriodAQIData",array($param));