当前位置: 首页>>代码示例>>PHP>>正文


PHP Resource::post方法代码示例

本文整理汇总了PHP中Resource::post方法的典型用法代码示例。如果您正苦于以下问题:PHP Resource::post方法的具体用法?PHP Resource::post怎么用?PHP Resource::post使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Resource的用法示例。


在下文中一共展示了Resource::post方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: post

 /**
  * @param \Base $f3
  * @param array $params
  */
 public function post(\Base $f3, $params)
 {
     $this->response->data['SUBPART'] = 'webot_edit.html';
     $msg = \Flash::instance();
     if (isset($params['id'])) {
         // update existing
         $this->resource->load(array('_id = ?', $params['id']));
     }
     parent::post($f3, $params);
 }
开发者ID:theralfbrown,项目名称:OWASP-mth3l3m3nt-framework,代码行数:14,代码来源:webot.php

示例2: request

 /**
  * Executes request on link.
  *
  * @param   string $url
  * @param   string $method
  * @param   array  $postfields
  * @return  null|string
  */
 private function request($url, $method = 'GET', $postfields = [])
 {
     switch (strtolower($method)) {
         case "get":
             return $this->ch->get($url);
             break;
         case "post":
             return $this->ch->post($url, $postfields);
             break;
     }
     return null;
 }
开发者ID:rusranx,项目名称:vk,代码行数:20,代码来源:VK.php

示例3: post

 public function post(\Base $f3, $params)
 {
     $this->response->data['SUBPART'] = 'user_edit.html';
     $msg = \Flash::instance();
     if (isset($params['id'])) {
         // update existing
         $this->resource->load(array('_id = ?', $params['id']));
         if ($f3->get('HOST') == 'ikkez.de' && !$this->resource->dry() && $this->resource->username == 'admin') {
             $msg->addMessage("You are not allowed to change the demo-admin", 'danger');
             $f3->reroute('/admin/' . $params['module']);
             return;
         }
     }
     parent::post($f3, $params);
 }
开发者ID:xfra35,项目名称:fabulog,代码行数:15,代码来源:user.php

示例4: post

 /**
  * update/create post
  * @param \Base $f3
  * @param array $params
  */
 public function post(\Base $f3, $params)
 {
     parent::post($f3, $params);
     if ($this->response instanceof \View\Backend) {
         $this->initBackend();
     }
 }
开发者ID:xfra35,项目名称:fabulog,代码行数:12,代码来源:post.php

示例5: post

 public function post(\Engine\IResponse $response)
 {
     parent::post($response);
     $response->sendData(["url" => $this->url->getUrl(), "method" => $this->method->getMethod(), "get" => $this->get, "post" => $this->post, "Provider\\Test" => $this->provider->get("Test")->checkIfWorking()]);
 }
开发者ID:andyautida14,项目名称:php-rest-engine,代码行数:5,代码来源:Url.php


注:本文中的Resource::post方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。