當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Listing::getformatPrice方法代碼示例

本文整理匯總了PHP中Listing::getformatPrice方法的典型用法代碼示例。如果您正苦於以下問題:PHP Listing::getformatPrice方法的具體用法?PHP Listing::getformatPrice怎麽用?PHP Listing::getformatPrice使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Listing的用法示例。


在下文中一共展示了Listing::getformatPrice方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: actionAutocomplete

 public function actionAutocomplete()
 {
     $this->layout = false;
     $criteria = new CDbCriteria();
     $criteria->addSearchCondition('t.property_name_or_address', ActiveRecord::safeField($_GET['term']), true);
     $criteria->compare('t.status', STATUS_ACTIVE);
     $criteria->compare('t.user_id', $this->userID);
     //        $criteria->limit = 20;
     $models = Listing::model()->findAll($criteria);
     $returnVal = array();
     foreach ($models as $model) {
         $returnVal[] = array('label' => $model->property_name_or_address, 'value' => $model->property_name_or_address, 'Listing_property_type_1' => $model->property_type_1, 'Listing_property_type_2' => $model->property_type_2, 'Listing_unit_from' => $model->unit_from, 'Listing_unit_to' => $model->unit_to, 'Listing_price' => Listing::getformatPrice($model->price), 'Listing_office_bkank_valuation' => Listing::getformatPrice($model->office_bkank_valuation), 'Listing_of_bedroom' => $model->of_bedroom, 'Listing_floor_area' => $model->floor_area, 'Listing_hdb_town_estate' => $model->floor_area, 'Listing_developer' => $model->developer, 'Listing_tenure' => $model->tenure, 'Listing_field' => $model->postal_code, 'Listing_postal_code' => $model->postal_code, 'Listing_postal_code_xy' => $model->postal_code_xy);
     }
     echo CJSON::encode($returnVal);
     Yii::app()->end();
 }
開發者ID:jasonhai,項目名稱:onehome,代碼行數:16,代碼來源:ListingController.php


注:本文中的Listing::getformatPrice方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。