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


PHP core::getInput方法代碼示例

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


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

示例1: get

 /**
  * api:en.goodsTag.get
  * 功能:根據商品id獲取商品信息
  * 調用:CT_Api::get();
  * 參數:$id:商品id
  */
 public function get()
 {
     $id = core::getInput("id");
     $data = $this->model->get($id);
     if ($data) {
         //存在
         core::outPut(1, $data);
     } else {
         //不存在
         core::outPut(-1);
     }
 }
開發者ID:joindennis,項目名稱:yidejia,代碼行數:18,代碼來源:goodsTag.php

示例2: delete

 /**
  * api: en.info.delete
  * 功能:刪除商品描述信息
  * 調用:CT_Api::post();
  * 參數:$id: 商品id
  */
 public function delete()
 {
     $id = core::getInput("id");
     $result = $this->model->delete($id);
     if ($result) {
         //存在
         core::outPut(1, $result);
     } else {
         //不存在
         core::outPut(-1);
     }
 }
開發者ID:joindennis,項目名稱:yidejia,代碼行數:18,代碼來源:info.php

示例3: freeSample

 /**
  * api: en.facebook.freeSample
  */
 public function freeSample()
 {
     $data = core::getInput();
     $result = $this->model->freeSample($data);
     if ($result) {
         core::outPut(1, $result);
     } else {
         core::outPut(-1);
     }
 }
開發者ID:joindennis,項目名稱:yidejia,代碼行數:13,代碼來源:facebook.php

示例4: clearCacheById

 /**
  * api: en.mmfStylists.clearCacheById
  * function:clear cache data by id
  * call:CT_Api::post();
  * param:$id: mmfStylists id  (must be assigned)
  */
 public function clearCacheById()
 {
     $id = core::getInput("id");
     $this->model->ClearCacheById($id);
 }
開發者ID:joindennis,項目名稱:yidejia,代碼行數:11,代碼來源:mmfStylists.php

示例5: getAmount

 /**
  * api: en.order.getAmount
  * 功能:獲取購物車商品總金額
  * 調用:CT_Api::get();
  * 參數:$goods_qty: 購物車商品串
  */
 public function getAmount()
 {
     $goods_qty = core::getInput("goods_qty");
     $data = $this->model->getAmount($goods_qty);
     if ($data) {
         core::outPut(1, $data);
     } else {
         core::outPut(-1);
     }
 }
開發者ID:joindennis,項目名稱:yidejia,代碼行數:16,代碼來源:order.php

示例6: deleteMsgs

 /**
  * api£º en.userMessages.deleteMsgs
  * function£ºdelete messages
  * call£ºCT_Api::post();
  * param£º$ids: message ids array() (must be assigned)
  *
  * Note: $mode and $uid must be assigned before $ids
  */
 public function deleteMsgs()
 {
     $data = core::getInput();
     $mode = $data['mode'];
     $uid = $data['uid'];
     $ids = $data['id'];
     if (!$ids) {
         if ($uid) {
             $ids = array_slice($data, 3, -4);
         } else {
             $ids = array_slice($data, 2, -4);
         }
     }
     $result = $this->model->deleteMsgs($ids, $mode, $uid);
     if ($result) {
         //Exist
         core::outPut(1, $result);
     } else {
         //Not exist
         core::outPut(-1);
     }
 }
開發者ID:joindennis,項目名稱:yidejia,代碼行數:30,代碼來源:userMessages.php


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