1

Slim 2 では、これを行います。

$app->map('/login', function () use ($app) {

    // Test for Post & make a cheap security check, to get avoid from bots
    if ($app->request()->isPost() && sizeof($app->request()->post()) >= 2) {

        //
    }

    // render login
    $app->render('login.twig');

})->via('GET','POST')->setName('login');

しかしSlim3では、

// Post the login form.
$app->post('/login', function (Request $request, Response $response, array $args) {

    // Get all post parameters:
    $allPostPutVars = $request->getParsedBody();

    // Test for Post & make a cheap security check, to get avoid from bots
    if ($request()->isPost() && sizeof($allPostPutVars) >= 2) {

        ///
    }

});

このエラーが発生します。

致命的なエラー: C: 関数名は文字列でなければなりません...

明らかにそれisPost()は推奨されていないので、Slim 3 で isPost の代わりに何を使用すればよいですか?

4

2 に答える 2

1

ドキュメントコメントによると、Slim は次の独自の方法をサポートしています。

  • $request->isGet()
  • $request->isPost()
  • $request->isPut()
  • $request->isDelete()
  • $request->isHead()
  • $request->isPatch()
  • $request->isOptions()

使用例を次に示します。

<?php
require 'vendor/autoload.php';

use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\ResponseInterface;

$app = new \Slim\App;
$app->map(['GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'PATCH', 'OPTIONS'], '/', function (ServerRequestInterface $request, ResponseInterface $response) {
    echo "isGet():" . $request->isGet() . "<br/>";
    echo "isPost():" . $request->isPost() . "<br/>";
    echo "isPut():" . $request->isPut() . "<br/>";
    echo "isDelete():" . $request->isDelete() . "<br/>";
    echo "isHead():" . $request->isHead() . "<br/>";
    echo "isPatch():" . $request->isPatch() . "<br/>";
    echo "isOptions():" . $request->isOptions() . "<br/>";

    return $response;
});

$app->run();
于 2015-10-29T00:10:12.760 に答える