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


PHP Request::isPost方法代码示例

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


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

示例1: testIsMethods

 /**
  * Test `Is` Methods
  */
 public function testIsMethods()
 {
     $this->assertTrue(Request::isGet());
     $this->assertFalse(Request::isPost());
     $this->assertFalse(Request::isPut());
     $this->assertFalse(Request::isDelete());
     $this->assertFalse(Request::isFlashRequest());
     $this->assertFalse(Request::isXmlHttpRequest());
 }
开发者ID:dezvell,项目名称:mm.local,代码行数:12,代码来源:RequestTest.php

示例2: function

return function ($email = null, $password = null, $token = null) {
    /**
     * @var Controller $this
     */
    // change layout
    $this->useLayout('small.phtml');
    $userId = $this->user() ? $this->user()->id : null;
    /**
     * @var Users\Row $user
     */
    $user = Users\Table::findRow($userId);
    if (!$user) {
        throw new NotFoundException('User not found');
    }
    $this->assign('email', $user->email);
    if (Request::isPost()) {
        // process form
        try {
            if (empty($password)) {
                throw new Exception('Password is empty');
            }
            // login/password
            Auth\Table::getInstance()->checkEquals($user->login, $password);
            // check email for unique
            $emailUnique = Users\Table::findRowWhere(['email' => $email]);
            if ($emailUnique && $emailUnique->id != $userId) {
                throw new Exception('User with email "' . htmlentities($email) . '" already exists');
            }
            // generate change mail token and get full url
            $actionRow = UsersActions\Table::getInstance()->generate($userId, Table::ACTION_CHANGE_EMAIL, 5, ['email' => $email]);
            $changeUrl = Router::getFullUrl('users', 'change-email', ['token' => $actionRow->code]);
开发者ID:bluzphp,项目名称:skeleton,代码行数:31,代码来源:change-email.php


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