Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions appendices/ini.core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1265,15 +1265,20 @@ include_path = ".:${USER}/pear/php"
The default is to allow all files to be opened.
</para>
<note>
<para>
<simpara>
open_basedir can be tightened at run-time. This means
that if open_basedir is set to <literal>/www/</literal> in &php.ini;
a script can tighten the configuration to
<literal>/www/tmp/</literal> at run-time with
<function>ini_set</function>. When listing several directories, you
can use the <constant>PATH_SEPARATOR</constant> constant as a separator
regardless of the operating system.
</para>
</simpara>
<simpara>
As of PHP 8.3.0, <option>open_basedir</option> no longer accepts a
paths containing the parent directory (<literal>..</literal>) when
set at runtime using <function>ini_set</function>.
</simpara>
</note>
<note>
<para>
Expand Down