mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Document the disable_classes directive, available since PHP 4.3.2
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@126948 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
612464dc75
commit
a538eafb49
1 changed files with 30 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.37 $ -->
|
||||
<!-- $Revision: 1.38 $ -->
|
||||
<chapter id="features.safe-mode">
|
||||
<title>Safe Mode</title>
|
||||
|
||||
|
@ -65,6 +65,11 @@
|
|||
<entry>""</entry>
|
||||
<entry>PHP_INI_SYSTEM</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>disable_classes</entry>
|
||||
<entry>""</entry>
|
||||
<entry>PHP_INI_SYSTEM</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
@ -246,6 +251,30 @@
|
|||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry id="ini.disable-classes">
|
||||
<term>
|
||||
<parameter>disable_classes</parameter>
|
||||
<type>string</type>
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
This directive allows you to disable certain classes for
|
||||
<link linkend="security">security</link> reasons. It takes
|
||||
on a comma-dilimited list of class names. disable_classes
|
||||
is not affected by <link linkend="ini.safe-mode">Safe Mode</link>.
|
||||
</simpara>
|
||||
<simpara>
|
||||
This directive must be set in &php.ini; For example, you
|
||||
cannot set this in &httpd.conf;.
|
||||
</simpara>
|
||||
<note>
|
||||
<title>Availability note</title>
|
||||
<simpara>
|
||||
This directive became available in PHP 4.3.2
|
||||
</simpara>
|
||||
</note>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</para>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue