芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/assets/social/Facebook/GraphNodes/GraphLocation.php
getField('street'); } /** * Returns the city component of the location * * @return string|null */ public function getCity() { return $this->getField('city'); } /** * Returns the state component of the location * * @return string|null */ public function getState() { return $this->getField('state'); } /** * Returns the country component of the location * * @return string|null */ public function getCountry() { return $this->getField('country'); } /** * Returns the zipcode component of the location * * @return string|null */ public function getZip() { return $this->getField('zip'); } /** * Returns the latitude component of the location * * @return float|null */ public function getLatitude() { return $this->getField('latitude'); } /** * Returns the street component of the location * * @return float|null */ public function getLongitude() { return $this->getField('longitude'); } }