本文整理汇总了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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
示例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);
}
}
示例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);
}
}