Slide 43
Slide 43 text
Benjamin Grandfond - PHP Tour Nantes 2012
✔ Codes HTTP
Interface uniforme ?
# Symfony/Component/HttpFoundation/Response.php
public static $statusTexts = array(
200 => 'OK',
201 => 'Created',
...
204 => 'No Content',
...
304 => 'Not Modified',
...
400 => 'Bad Request',
401 => 'Unauthorized',
...
404 => 'Not Found',
405 => 'Method Not Allowed',
406 => 'Not Acceptable',
...
409 => 'Conflict',
...
415 => 'Unsupported Media Type',
...
500 => 'Internal Server Error',
...
503 => 'Service Unavailable'
...
jeudi 29 novembre 12