本文整理匯總了PHP中SimpleXMLElement::xPath方法的典型用法代碼示例。如果您正苦於以下問題:PHP SimpleXMLElement::xPath方法的具體用法?PHP SimpleXMLElement::xPath怎麽用?PHP SimpleXMLElement::xPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SimpleXMLElement
的用法示例。
在下文中一共展示了SimpleXMLElement::xPath方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getWeatherForLocation
/**
* So, the user wants weather, correct?
*/
public function getWeatherForLocation($sChannel, $sNickname, $sArguments)
{
if (!$sArguments) {
$this->Notice($sNickname, "USAGE: weather [Town or City name]");
return END_EVENT_EXEC;
}
$sXML = utf8_encode(file_get_contents("http://www.google.com/ig/api?weather=" . urlencode($sArguments)));
$pXML = new SimpleXMLElement($sXML);
$pCurrentConditions = $pXML->xPath("//xml_api_reply/weather/current_conditions");
$pLocationDetails = $pXML->xPath("//xml_api_reply/weather/forecast_information");
if (!$pLocationDetails) {
$this->Notice($sNickname, "Nope, give me a real town name, please!");
return END_EVENT_EXEC;
}
$this->Message($sChannel, "{b}Weather for {c:darkblue}{$pLocationDetails[0]->city['data']}", FORMAT);
$this->Message($sChannel, "{c:darkgreen}Condition:{r} {$pCurrentConditions[0]->condition['data']}", FORMAT);
$this->Message($sChannel, "{c:darkgreen}Temperature:{r} {$pCurrentConditions[0]->temp_c['data']}°C, {$pCurrentConditions[0]->temp_f['data']}°F", FORMAT);
$this->Message($sChannel, "{c:darkgreen}Humidity:{r} " . substr($pCurrentConditions[0]->humidity['data'], 10), FORMAT);
$this->Message($sChannel, "{c:darkgreen}Wind Speed:{r} " . substr($pCurrentConditions[0]->wind_condition['data'], 6), FORMAT);
return END_EVENT_EXEC;
}