Christoph M. Becker
Christoph M. Becker
Indeed, the repective `deprecated` attribute is missing: https://github.com/php/doc-en/blob/d73dfcdcebcffe220074597f82c2478ed5dea572/reference/uopz/versions.xml#L17
I agree that we should warn users about such misconfiguration. I think this is not particular special for FPM, though, but rather holds for any (F)CGI setup. However, given that...
First, thank you for the PR @YakoYakoYokuYoku! > I'm not sure there's no point in calling deinit at all? Well, they may release resources there, so it would be *nice*...
> unless the deinit releases a significant amount of resources, I argue that we should never do it, nor expose an API for it. From https://github.com/strukturag/libheif/blob/33ec3d63470944906dbccffa085970083969de3a/libheif/api/libheif/heif.h#L544-L545: > For backwards compatibility,...
From the [libpng manual](http://www.libpng.org/pub/png/libpng-manual.txt) (emphasis mine): > The PNG specification allows the width and height of an image to be as large as 2^31-1 (0x7fffffff), or about 2.147 billion rows...
Well, when writing PNGs, of course you can catch that. But what about reading the PNG you have previously written? Okay, libgd limits width * height to INT_MAX, anyway (for...
@kamil-tekiela, I generally agree, but consistency also makes sense. As is, `date()` is referred to by `filemtime()` and `getlastmod()`, but not by `fileatime()` and `filectime()`.
`$array1_sort_flags` says: > This argument can be swapped with array1_sort_order or omitted entirely, in which case SORT_REGULAR is assumed. This is slightly misleading, as `SORT_REGULAR` is only assumed, if `$array1_sort_flags`...
@criticalfault, maybe give a simple but complete test script. I don't think there is anything wrong with the implementation of `array_multisort()`, nor anything grossly wrong about its documentation.
Well, comments always start with a semicolon, but the semicolon doesn't have to be the first character of a line. That basically works like [one-line PHP comments](https://www.php.net/manual/en/language.basic-syntax.comments.php). The php.ini example...