doc-en
doc-en copied to clipboard
English PHP documentation
WIP - (void) cast needs `#[\NoDiscard]` documentation in order to link https://github.com/php/doc-en/tree/master/language/predefined/attributes
New INI introduced in PHP 8.5
See https://github.com/php/php-src/pull/19434
``` echo intval('42.'); //42 ok echo intval('42.42'); //42 ok echo intval('42.42e'); //42 ok echo intval('42.42e42'); //9223372036854775807 ``` --- From manual page: https://php.net/function.intval
This PR addresses issue #5030. Clarify the Generator::rewind() documentation to accurately reflect the function’s behavior.
From manual page: https://php.net/generator.rewind --- The documentation for Generator::rewind() can be misleading. It suggests that rewind() always resets the generator, but in practice it only executes up to the first...
# Pull Request: Rewrite and Correct DocBook Chapter for Standards Compliance ## Summary This pull request rewrites the entire DocBook chapter to ensure full compliance with DocBook 5.x standards, improve...
Matches changes in php/php-src#15727.
📝 Description de la Pull Request This PR adds missing constants for the PDO_SQLITE driver that are currently available in PHP but not documented. Issue: https://github.com/php/doc-en/issues/1394 Newly added constants: ```...