1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-27 08:32:09 +01:00
Commit Graph

165 Commits

Author SHA1 Message Date
Yoshinari Takaoka
fa7acf941f fixed build error / added part of 8.2.0 migration guide. 2022-09-26 19:50:25 +09:00
Yoshinari Takaoka
65c65aaaaa Use the alias entity everywhere
b5525a1412
2022-09-07 16:33:45 +09:00
Yoshinari Takaoka
645d326d80 Reword parameter description of set_exception_handler
09f4a3f040
2022-05-20 01:05:42 +09:00
Yoshinari Takaoka
fc2c148c1c static[プロパティ|メソッド] 関連をさらに調整 2022-05-03 02:35:52 +09:00
Yoshinari Takaoka
a015c61fae Fixed info about @ operator
- 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".

14a60fad6e
2022-04-05 19:35:50 +09:00
Yoshinari Takaoka
876575fa86 Default value for error_reporting is E_ALL as of PHP 8.0.0
b9d5dcd782
2022-01-09 06:26:29 +09:00
Yoshinari Takaoka
af24130230 Generate various ext/standard method synopses from stubs - part 5
/769812c12f
2021-12-22 21:59:37 +09:00
Yoshinari Takaoka
e4aaafc21f 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.

44090248a8
2021-12-18 09:20:16 +09:00
Yoshinari Takaoka
ba92ebd3b1 log_errors do not use error_append_string directive
https://bugs.php.net/bug.php?id=39492
470a17d5e8
2021-11-23 22:54:30 +09:00
Yoshinari Takaoka
9454ffd362 Remove obsolete info about display_errors being bool once
3f1bb54ebf
2021-11-23 22:48:04 +09:00
Yoshinari Takaoka
baa3f8eb21 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).

7a312f9c79
2021-11-19 06:24:32 +09:00
Yoshinari Takaoka
66367280d4 Types are not hints in PHP.
As they are checked at run-time, type checking is enforced in PHP and not 'hinted'.

b95e76e41d
2021-10-10 18:28:12 +09:00
Yoshinari Takaoka
cc01df47c5 * 他と統一するため、オペレーティングシステム には中黒をつかわない
* (これは好みの問題だが) システム・ロガー の中黒も削除
* 日本語としてすっと読めるように調整
2021-10-03 04:07:28 +09:00
shu1007
7cbd651c14 message_type=0の説明の修正 (#16) 2021-10-02 02:06:20 +09:00
Yoshinari Takaoka
2b92b2909d Followed change of default value of display_startup_errors, as of PHP 8.0.0
3cdd39bb95
2021-09-09 21:58:28 +09:00
Yoshinari Takaoka
be80fb6387 Remove E_STRICT and other PHP 5 related information
de9c65c91f
2021-08-18 21:47:15 +09:00
Yoshinari Takaoka
c6943e5ae0 updated track_errors (removed as of PHP 8.0.0) changelog.
ついでに、日本語版にのみ存在していた、表のカラムのズレを修正した。
a63794ecfd
2021-08-16 14:12:07 +09:00
Yoshinari Takaoka
d9109736cd syslog.filter is not supported on Windows
704b528c70
2021-07-30 21:44:42 +09:00
Yoshinari Takaoka
a27074acab Fix issues in ErrorFunc directory 2021-06-10 01:20:39 +09:00
Yoshinari Takaoka
6ef96778fc Remove PHP 5 specific info 2021-05-24 00:34:39 +09:00
Yoshinari Takaoka
34d75253c4 Generate methodsynopses based on stubs for Zend functions and methods (php/doc-en#168) 2021-05-23 12:33:54 +09:00
Yoshinari Takaoka
7b25774e25 Document the changes to syslog.filter
* Documenting the changes to syslog.filter

php/php-src#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
2021-05-11 10:22:30 +09:00
Yoshinari Takaoka
0e29a256ef Removed Changelog entries for PHP 5, PHP 7.0 (php/doc-en#543) 2021-04-23 01:59:00 +09:00
Yoshinari Takaoka
4ff851ad4f Cleanup and update docs related to @ operator
Also fix part of the set_error_handler() docs

Closes GH-441
2021-02-19 21:55:00 +09:00
Yoshinari Takaoka
875e657151 error_log($msg, 0) always returns true
Cf. <https://bugs.php.net/66760>.
2021-02-18 17:55:40 +09:00
Yoshinari Takaoka
def02cf418 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/ja/trunk@352198 c90b9560-bf6c-de11-be94-00142212c4b1
2020-12-27 04:34:12 +00:00
Yoshinari Takaoka
0973de56dc set_error_handler: clarify callback parameters and PHP 8.0 changes
Closes GH-276.


git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@352041 c90b9560-bf6c-de11-be94-00142212c4b1
2020-12-12 18:57:55 +00:00
Yoshinari Takaoka
975835b9bd update EN-Revision only
EN-Revision was fully updated, because of revert r351730, r351729.


git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@352016 c90b9560-bf6c-de11-be94-00142212c4b1
2020-12-11 19:06:49 +00:00
Yoshinari Takaoka
10a6f3885c added svn keywords
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@351444 c90b9560-bf6c-de11-be94-00142212c4b1
2020-11-19 00:12:20 +00:00
Yoshinari Takaoka
144f5f2124 Use canonical type names
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@351153 c90b9560-bf6c-de11-be94-00142212c4b1
2020-11-02 19:20:32 +00:00
Yoshinari Takaoka
8cad649719 Get rid of "callback" types
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@350805 c90b9560-bf6c-de11-be94-00142212c4b1
2020-10-06 21:36:49 +00:00
Yoshinari Takaoka
e9212c586b Fix #80164: Example says "see changelog" but there's no changelog
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@350727 c90b9560-bf6c-de11-be94-00142212c4b1
2020-10-01 07:46:17 +00:00
Yoshinari Takaoka
73ccac34bf Remove PHP4 or PHP5 only extension, changelogs
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@350668 c90b9560-bf6c-de11-be94-00142212c4b1
2020-09-27 01:47:22 +00:00
Yoshinari Takaoka
e817b94c0f Improve example regarding valid HTML
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@350548 c90b9560-bf6c-de11-be94-00142212c4b1
2020-09-12 11:42:07 +00:00
Yoshinari Takaoka
4017517417 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/ja/trunk@349137 c90b9560-bf6c-de11-be94-00142212c4b1
2020-02-05 21:23:28 +00:00
Yoshinari Takaoka
388f3b746e updated translation
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@348788 c90b9560-bf6c-de11-be94-00142212c4b1
2020-01-04 07:57:22 +00:00
Yoshinari Takaoka
5058a27103 updated translation
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@348787 c90b9560-bf6c-de11-be94-00142212c4b1
2020-01-04 07:53:25 +00:00
Yoshinari Takaoka
a748802bf3 updated translation
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@348786 c90b9560-bf6c-de11-be94-00142212c4b1
2020-01-04 07:46:33 +00:00
Satoru Yoshida
fb6bf55500 Translation correction
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@348077 c90b9560-bf6c-de11-be94-00142212c4b1
2019-09-27 14:20:47 +00:00
Satoru Yoshida
fe07575cd5 sync en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@347997 c90b9560-bf6c-de11-be94-00142212c4b1
2019-09-16 10:50:42 +00:00
TAKAGI Masahiro
2b0948eed4 Sync with en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@346473 c90b9560-bf6c-de11-be94-00142212c4b1
2018-12-29 00:02:29 +00:00
Satoru Yoshida
e72ad67776 sync en, but Status is working.
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@342340 c90b9560-bf6c-de11-be94-00142212c4b1
2017-04-16 00:52:39 +00:00
Satoru Yoshida
4457b2edef sync en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@341951 c90b9560-bf6c-de11-be94-00142212c4b1
2017-02-22 14:00:40 +00:00
TAKAGI Masahiro
0b65e5098d Update translation
By: Kurita Takashi

git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@339717 c90b9560-bf6c-de11-be94-00142212c4b1
2016-07-25 22:31:35 +00:00
TAKAGI Masahiro
295ca2c883 Sync with en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@339400 c90b9560-bf6c-de11-be94-00142212c4b1
2016-06-19 13:00:55 +00:00
Satoru Yoshida
5876cba7ac new translation on errorfunc
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@337944 c90b9560-bf6c-de11-be94-00142212c4b1
2015-10-04 01:41:39 +00:00
TAKAGI Masahiro
f94c0a0103 Sync with en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@337673 c90b9560-bf6c-de11-be94-00142212c4b1
2015-08-30 20:21:34 +00:00
TAKAGI Masahiro
ca26e8c076 Sync with en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@337296 c90b9560-bf6c-de11-be94-00142212c4b1
2015-08-05 22:46:58 +00:00
TAKAGI Masahiro
23677fbf4d Sync with en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@336844 c90b9560-bf6c-de11-be94-00142212c4b1
2015-05-25 23:05:54 +00:00
TAKAGI Masahiro
26f8f5cc6c Sync with en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@334624 c90b9560-bf6c-de11-be94-00142212c4b1
2014-08-27 22:56:38 +00:00