Doesn't use effective UID (bug #40535)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@232443 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2007-03-23 16:10:05 +00:00
parent f01daaa656
commit dbbee91caa
2 changed files with 14 additions and 2 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.15 $ -->
<!-- $Revision: 1.16 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.file-exists">
<refnamediv>
@ -53,6 +53,12 @@ if (file_exists($filename)) {
linkend="ini.safe-mode-include-dir">safe_mode_include_dir</link>.
</para>
</warning>
<note>
<para>
The check is done using the real UID/GID instead of the effective one.
</para>
</note>
<para>
See also <function>is_readable</function>, <function>is_writable</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.10 $ -->
<!-- $Revision: 1.11 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.is-readable">
<refnamediv>
@ -43,6 +43,12 @@ if (is_readable($filename)) {
&tip.fopen-wrapper.stat;
<note>
<para>
The check is done using the real UID/GID instead of the effective one.
</para>
</note>
<para>
See also <function>is_writable</function>,
<function>file_exists</function>, and