svn: /phpdoc/ja/trunk/reference/filesystem/functions/ stat.xml
[email protected] (Yoshinari Takaoka)
| Newsgroups | php.doc.ja |
|---|---|
| Message-ID | <[email protected]> |
mumumu Fri, 24 Jul 2020 05:08:27 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=350205
Log:
Fix #78400: Sym-linked files are not accessible
Bug: https://bugs.php.net/78400 (error getting bug information)
Changed paths:
U phpdoc/ja/trunk/reference/filesystem/functions/stat.xml
Modified: phpdoc/ja/trunk/reference/filesystem/functions/stat.xml
===================================================================
--- phpdoc/ja/trunk/reference/filesystem/functions/stat.xml 2020-07-24 04:53:54 UTC (rev 350204)
+++ phpdoc/ja/trunk/reference/filesystem/functions/stat.xml 2020-07-24 05:08:27 UTC (rev 350205)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 350157 Maintainer: hirokawa Status: ready -->
+<!-- EN-Revision: 350194 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka,mumumu -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.stat">
<refnamediv>
@@ -19,6 +19,10 @@
ついての統計情報を取得します。
<parameter>filename</parameter> がシンボリックリンクの場合、
シンボリックリンクではなくファイルの実体の統計情報が返されます。
+ Windows 環境、かつ PHP 7.4.0 より前の <abbrev>NTS</abbrev> ビルドでは、
+ <literal>size</literal>,
+ <literal>atime</literal>, <literal>mtime</literal>, <literal>ctime</literal>
+ の統計情報は、シンボリックリンクの値が返されていました。
</para>
<para>
<function>lstat</function>
@@ -220,6 +224,15 @@
そして、inode 番号は、ファイルに関連付けられた識別子を返すようになりました。
</entry>
</row>
+ <row>
+ <entry>7.4.0</entry>
+ <entry>
+ シンボリックリンクの場合、
+ <literal>size</literal>, <literal>atime</literal>, <literal>mtime</literal>,
+ <literal>ctime</literal> の統計情報は、ファイルの実体の値が返されるようになりました。
+ これより前のバージョンの Windows NTS ビルドはそうではありませんでした。
+ </entry>
+ </row>
</tbody>
</tgroup>
</informaltable>