PHP 8.3.21 Released!

Voting

: max(one, seven)?
(Example: nine)

The Note You're Voting On

stephen at bobs-bits dot com
11 years ago
It's not mentioned explicitly, but the return value when SETTING, is the OLD status code.
e.g.
<?php

$a
= http_response_code();
$b = http_response_code(202);
$c = http_response_code();

var_dump($a, $b, $c);

// Result:
// int(200)
// int(200)
// int(202)
?>

<< Back to user notes page

To Top