doc-en
doc-en copied to clipboard
English PHP documentation
Related to #2163 As I don't have a Solaris box, the pcntl_forkx documentation is based on the php-src code and comments, combined with [the Solaris documentation](https://docs.oracle.com/cd/E86824_01/html/E54765/forkx-2.html) pcntl_wifcontinued is wrapped in...
### Affected page https://doc.php.net/guide/local-setup.md ### Issue description Following the instructions on https://doc.php.net/guide/local-setup.md for Docker, running `make` gives the following error: ``` n$ make docker run --rm -v .:/var/www/en -w /var/www...
Add documentation for the new "partitioned" cookie option introduced in PHP 8.5.0 (CHIPS support). Updates include: - Added "partitioned" to the list of supported cookie options in setcookie() and setrawcookie()...
This PR adds documentation for `Locale::isRightToLeft()`, which was introduced in PHP 8.5 but was not previously documented in the manual. The new section describes the method behavior, its reliance on...
Adds documentation for two OPCache functions: - opcache_is_script_cached_in_file_cache: checks if a script is cached in OPCache file cache - opcache_jit_blacklist: blacklists a function from being JIT compiled The opcache_jit_blacklist function...
[Issue 4600](https://github.com/php/doc-en/issues/4600) The documentation for `ReflectionClass::setStaticPropertyValue()` is outdated. Since PHP 7.4.9, this method can set static properties regardless of their visibility (public, protected, or private), which is covered by core...
Documentation updated for new reserved class names - Update reserved words documentation to include array and callable as reserved words as of PHP 8.5. - Clarify in class_alias() function that...
From manual page: https://php.net/reflectionclass.setstaticpropertyvalue --- > Sets the value of a public static property. If the property is private or protected, the method will fail. From https://3v4l.org/mSHWS this has not...
From manual page: https://php.net/imagick.resizeimage there is no explanation of what the $legacy argument is supposed to do. (also the $bestfit argument documentation is rather vague - i GUESS it means...