本文整理汇总了PHP中Slim\Slim::lastModified方法的典型用法代码示例。如果您正苦于以下问题:PHP Slim::lastModified方法的具体用法?PHP Slim::lastModified怎么用?PHP Slim::lastModified使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Slim\Slim
的用法示例。
在下文中一共展示了Slim::lastModified方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
$app->get('/contacts/:id', $contentNegotiation, function ($id) use($app) {
//This value should be specific to the current resource
$lastModifiedTime = gmdate('D, d M Y H:i:s ') . ' GMT';
$app->response()->header('Last-Modified', $lastModifiedTime);
$app->status(200);
echo $app->render($app->template, ['contact' => ['contact_id' => $id, 'name' => $app->faker->firstName, 'last_name' => $app->faker->lastName]]);
});
$app->put('/contacts/:id', $contentNegotiation, function ($id) use($app) {
$contactInformation = $app->request()->getBody();
parse_str($contactInformation, $contact);
$contact['contact_id'] = $id;
if (empty($contact['name'])) {
$contact['name'] = $app->faker->firstName;
}
if (empty($contact['last_name'])) {
$contact['last_name'] = $app->faker->lastName;
}
$lastModifiedTime = time();
$app->lastModified($lastModifiedTime);
$app->status(200);
echo $app->render($app->template, ['contact' => $contact]);
});
$app->delete('/contacts/:id', function ($id) use($app) {
//Delete contact here
$app->status(204);
});
$app->options('/contacts/:id', function ($id) use($app) {
$validOptions = ['GET', 'HEAD', 'PUT', 'DELETE', 'OPTIONS'];
$app->response()->header('Allow', implode(',', $validOptions));
});
$app->run();