Christoph M. Becker
Christoph M. Becker
Hmm, I'm not sure this change is really worth to be documented. After all, the `setcookie()` documentation already mentions RFC 6265, and we're still conforming to that. What's your particular...
Okay, let's document it then; it's not hard to do, and may save others some time.
This is probably due to an upstream change; PHP 8.0 ships with libmagic 5.39 while PHP 8.1 has 5.40.
```` cmb@ELEPHPANT:~$ cd file-5.37 cmb@ELEPHPANT:~/file-5.37$ ./bin/file --mime-type ../data.txt ../data.txt: text/plain cmb@ELEPHPANT:~/file-5.37$ cd ../file-5.39 cmb@ELEPHPANT:~/file-5.39$ ./bin/file --mime-type ../data.txt ../data.txt: application/csv cmb@ELEPHPANT:~/file-5.39$ cd ../file-5.40 cmb@ELEPHPANT:~/file-5.40$ ./bin/file --mime-type ../data.txt ../data.txt: text/csv cmb@ELEPHPANT:~/file-5.40$ cd...
I agree that it makes sense to explicitly mention the libmagic versions we are using (in the manual proper, as well as in the migration guide). I don't think it...
As is, for PDO_MySQL this is a connection attribute, so setting it after the the PDO instance has been constructed, won't change anything. Still, it should be possible to retrieve...
Well, apparently none of the other bundled PDO drivers supports getting the value of `PDO::ATTR_TIMEOUT` either, so I think we should leave it as this, but document it (currently, `PDO::ATTR_TIMEOUT`...
> 1. Such name changes should be noted there. Keyword changelog I agree that we should maintain a changelog for the supported timezones. @derickr, would that be suitable (since that...
> and as some distributions don't even use the built-in database, but rely on the Operating System, this list can not be relied on in any case. Ah, right! Then...
From the [docs](https://www.php.net/manual/en/language.oop5.anonymous.php): > All objects created by the same anonymous class declaration are instances of that very class. This explains the behavior quite nicely, but maybe we should make...