1
0
mirror of https://github.com/php/doc-en.git synced 2026-03-24 07:42:10 +01:00
Commit Graph

293 Commits

Author SHA1 Message Date
Sebastian Hädrich
26a8f2141b Add note explaining the bitmap combination possiblities for debug_backtrace() (#1630)
Co-authored-by: George Peter Banyard <girgias@php.net>
2023-07-26 14:39:47 +01:00
Simon Stücher
72a6f3d35e Document removal of log_errors_max_len INI setting (#2464)
See https://www.php.net/manual/en/migration81.other-changes.php#migration81.other-changes.ini
2023-05-09 12:10:42 +01:00
Máté Kocsis
f781803449 Narrow bool return types to true when possible (#2458) 2023-05-07 22:32:58 +02:00
Odachannnn
686b6869e2 Exceptions are not specific to PHP 5 (#2352) 2023-03-15 21:41:53 +00:00
Kamil Tekiela
23906aa9f6 die is not a function (#2218) 2023-01-19 10:01:59 +00:00
Robert Morley
bd38d9d20a Reword excessively hardcore requirement
While we're at it, we also remove the personalization.

Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>

Closes GH-2123.
2022-12-31 14:18:55 +01:00
George Peter Banyard
65716f4761 Add initial version of the PHP 8.2 migration guide (#1799)
Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>
Co-authored-by: Tim Düsterhus <timwolla@googlemail.com>
2022-09-26 10:40:14 +01:00
Máté Kocsis
b5525a1412 Use the alias entity everywhere (#1800) 2022-09-06 21:10:52 +01:00
Kamil Tekiela
09f4a3f040 Reword parameter description of set_exception_handler (#1004) 2022-05-18 17:56:55 +01:00
David Grudl
14a60fad6e Fixed info about @ operator (#1196)
- UPGRADING says that the error_reporting (ie. value returned by error_reporting() or ini_get('error_reporting ')) is changed, not the severity value passed to the handler.
- UPGRADING says that the error_reporting() == 0 should be replaced with !(error_reporting() & $err_no) in code, not the return with return false. So there is currenctly no way how to detect @ operator.
- "Prior to PHP 8.0.0, the value of the severity passed to the custom error handler was always 0" - no true
- "return false; // Silenced" - not true, if the function returns false then the normal error handler continues, so it is not "silenced".

(partially reverts "Cleanup and update docs related to @ operator" commit 12b1d4704ea448b55ec155619be1e50c0e67e9f9.)

Co-authored-by: George Peter Banyard <girgias@php.net>
Co-authored-by: Larry Garfield <larry@garfieldtech.com>
2022-04-04 20:28:18 +01:00
George Peter Banyard
b9d5dcd782 Default value for error_reporting is E_ALL as of PHP 8.0.0 (#1307) 2022-01-08 14:36:08 +00:00
Máté Kocsis
769812c12f Generate various ext/standard method synopses from stubs - part 5 (#1232) 2021-12-22 12:34:12 +01:00
Christoph M. Becker
44090248a8 Update set_error|exeception_handler $callback descriptions
First, the $callback is a callable, and users are supposed to either
know what that means, or look it up elsewhere in the documentation, so
there is no need to explain it here again, and let it rot again.

Second, there is no need anymore to document pre PHP 7.0.0 behavior.
2021-12-17 14:22:42 +01:00
Yoshinari Takaoka
f6e8402a6d [skip-revcheck] fixed typo. 2021-11-23 22:51:23 +09:00
Christoph M. Becker
470a17d5e8 Fix #39492: log_errors do not use error_append_string directive 2021-11-23 13:29:12 +01:00
Christoph M. Becker
3f1bb54ebf Remove obsolete info about display_errors being bool once 2021-11-23 12:57:57 +01:00
Christoph M. Becker
7a312f9c79 set_error_handler() no longer returns null on failure
As of PHP 8.0.0, it throws a TypeError; prior to that version, that was
undefined behavior (as documented for internal functions).
2021-11-18 15:23:04 +01:00
Danack
b95e76e41d Types are not hints in PHP. (#1003)
As they are checked at run-time, type checking is enforced in PHP and not 'hinted'.

Co-authored-by: Kamil Tekiela <tekiela246@gmail.com>
2021-10-09 14:43:01 +01:00
Yoshinari Takaoka
3cdd39bb95 Followed change of default value of display_startup_errors, as of PHP 8.0.0 (#927)
Co-authored-by: George Peter Banyard <girgias@php.net>
2021-09-08 19:00:30 +09:00
Kamil Tekiela
de9c65c91f Remove E_STRICT and other PHP 5 related information (#730) 2021-08-17 17:56:25 +01:00
Yoshinari Takaoka
a63794ecfd updated track_errors (removed as of PHP 8.0.0) changelog. 2021-08-16 14:04:48 +09:00
Christoph M. Becker
704b528c70 syslog.filter is not supported on Windows 2021-07-30 12:59:41 +02:00
Sergey Panteleev
1de948e93f Fix issues in ErrorFunc directory
Part of #658
2021-06-09 12:12:17 +03:00
Christoph M. Becker
24ea750d47 Remove PHP 5 specific info 2021-05-23 15:07:41 +02:00
Máté
c44475e1fa Generate methodsynopses based on stubs for Zend functions and methods
Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de>

Closes GH-168.
2021-05-22 16:48:16 +02:00
SvenRtbg
477c5f97a6 Document the changes to syslog.filter
* Documenting the changes to syslog.filter

https://github.com/php/php-src/pull/4265 restored the previous handling of multi-line log messages by adding `syslog.filter=raw`.

* Highlight the fact that line splitting is happening in all of the three original modes, but not in "raw".

* Add "raw" to syslog section of 7.3 migration guide

Closes GH-589.
2021-05-10 18:19:06 +02:00
Sergey Panteleev
5fabd07880 Removed Changelog entries for PHP 5, PHP 7.0 (#543) 2021-04-22 17:52:58 +03:00
George Peter Banyard
12b1d4704e Cleanup and update docs related to @ operator
Also fix part of the set_error_handler() docs

Closes GH-441
2021-02-18 16:31:56 +00:00
Christoph M. Becker
471f9f42cd error_log($msg, 0) always returns true
Cf. <https://bugs.php.net/66760>.
2021-02-17 12:52:28 +01:00
Yoshinari Takaoka
0a60bed1c9 Added PHP 8 into versions.xml for errorfunc based on stubs.
Closes GH-424.
2021-01-28 00:06:37 +01:00
Christoph Michael Becker
0c9c2dd669 Generate some standard methodsynopses based on stubs
Cf. <https://github.com/php/doc-en/pull/289>.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@352191 c90b9560-bf6c-de11-be94-00142212c4b1
2020-12-26 19:26:31 +00:00
Christoph Michael Becker
71c12b1583 set_error_handler: clarify callback parameters and PHP 8.0 changes
Closes GH-276.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@352038 c90b9560-bf6c-de11-be94-00142212c4b1
2020-12-12 18:36:18 +00:00
Christoph Michael Becker
e41806c30b Revert revision(s) 351724 from phpdoc/en/trunk:
Document false and null return types

Cf. <https://news-web.php.net/php.doc.cvs/17645>.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351730 c90b9560-bf6c-de11-be94-00142212c4b1
2020-11-28 18:05:44 +00:00
Christoph Michael Becker
4754397753 Revert revision 351727 from phpdoc/en/trunk:
Document false and null return types

Cf. <https://news-web.php.net/php.doc.cvs/17645>.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351729 c90b9560-bf6c-de11-be94-00142212c4b1
2020-11-28 17:58:32 +00:00
Jakub Vrana
69bd53265b Document false and null return types
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351727 c90b9560-bf6c-de11-be94-00142212c4b1
2020-11-28 15:12:46 +00:00
Jakub Vrana
c80da7c04a Document false and null return types
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351724 c90b9560-bf6c-de11-be94-00142212c4b1
2020-11-28 12:54:59 +00:00
Christoph Michael Becker
86e6094e86 Use canonical type names
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351133 c90b9560-bf6c-de11-be94-00142212c4b1
2020-11-02 15:39:04 +00:00
Christoph Michael Becker
80872147aa Get rid of "callback" types
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350788 c90b9560-bf6c-de11-be94-00142212c4b1
2020-10-06 09:11:05 +00:00
Christoph Michael Becker
b92a33c51c Fix #80164: Example says "see changelog" but there's no changelog
That example refers to a changelog entry which stated that E_ALL is
available as of PHP 5.4.0.  Since the documenation does no longer
document PHP 5, that referral has to be removed.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350716 c90b9560-bf6c-de11-be94-00142212c4b1
2020-09-30 12:05:41 +00:00
Christoph Michael Becker
7f569e1f17 Remove more changelog entries, mostly from PHP 5.3 era
Patch contributed by Sobak <msobaczewski@gmail.com>.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350655 c90b9560-bf6c-de11-be94-00142212c4b1
2020-09-26 14:08:59 +00:00
Christoph Michael Becker
9af43469f4 Remove more changelog entries, mostly from PHP 5.2 era
Patch contributed by Sobak <msobaczewski@gmail.com>.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350654 c90b9560-bf6c-de11-be94-00142212c4b1
2020-09-26 13:52:31 +00:00
Christoph Michael Becker
be5b0f33a1 Remove more changelog entries, mostly from PHP 5.1 era
Patch contributed by Sobak <msobaczewski@gmail.com>.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350653 c90b9560-bf6c-de11-be94-00142212c4b1
2020-09-26 13:45:57 +00:00
Christoph Michael Becker
f29b00cccf Improve example regarding valid HTML
This integrated user note 125348.  Also, there is no need to `break` after `exit`ing.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350547 c90b9560-bf6c-de11-be94-00142212c4b1
2020-09-11 12:39:38 +00:00
Peter Cowburn
0007fca77f Clarify set_error_handler types that cannot be handled (doc bug #76318)
Patch by Sorin Nunca

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@349133 c90b9560-bf6c-de11-be94-00142212c4b1
2020-02-05 20:04:00 +00:00
George Peter Banyard
fbf6483810 Corrected some grammar mistakes
-- 
Provided by anonymous 100378 (sharon@xandium.io)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@348209 c90b9560-bf6c-de11-be94-00142212c4b1
2019-10-24 09:39:45 +00:00
Christoph Michael Becker
6da0f0108c Fix #76577: outdated documentation concerning track_errors
Cf. <https://wiki.php.net/rfc/deprecations_php_7_2#php_errormsg>


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@347919 c90b9560-bf6c-de11-be94-00142212c4b1
2019-09-02 13:01:20 +00:00
George Peter Banyard
b824e2b108 Remove PHP 4 and 5.0.0 mentions.
This includes changelogs but also some paragraphs and notes which mention PHP 4.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@347555 c90b9560-bf6c-de11-be94-00142212c4b1
2019-06-05 17:31:34 +00:00
Christoph Michael Becker
aceea02784 Document syslog.* ini directives (available as of PHP 7.3.0)
See also <https://bugs.php.net/76956>.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@346421 c90b9560-bf6c-de11-be94-00142212c4b1
2018-12-26 13:46:10 +00:00
Christoph Michael Becker
cc921d3789 Fix #76920: Out-dated Windows info
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@345682 c90b9560-bf6c-de11-be94-00142212c4b1
2018-09-23 15:47:07 +00:00
Andrey Andreev
028513e94b Document PHP 7.2 deprecations as the result of https://wiki.php.net/rfc/deprecations_php_7_2
Also, simplify the first paragraph of 'Traditional assertions' in assert() docs

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@342126 c90b9560-bf6c-de11-be94-00142212c4b1
2017-03-14 11:30:59 +00:00