示例#1
0
文件: Ip.php 项目: Konstnantin/zf-app
 public function setCity($id)
 {
     $modelCity = new Z_Model_Geo_Cityes();
     $city = $modelCity->find($id)->current();
     if ($city) {
         $ns = $this->_getNameSpace();
         $this->city = $city;
         $ns->cityId = $city->id;
     } else {
         return false;
     }
 }