PHP_INI_* are not constants, value is useless

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@322054 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2012-01-11 06:39:20 +00:00
parent d9c57659b4
commit 9ffa35f021

View file

@ -194,18 +194,16 @@ include_path = ".;c:\php\lib"
<para>
<table>
<title>Definition of PHP_INI_* modes</title>
<tgroup cols="3">
<tgroup cols="2">
<thead>
<row>
<entry>Mode</entry>
<entry>Value</entry>
<entry>Meaning</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>PHP_INI_USER</literal></entry>
<entry>1</entry>
<entry>
Entry can be set in user scripts (like with <function>ini_set</function>)
or in the <link linkend="configuration.changes.windows">Windows registry</link>
@ -213,17 +211,14 @@ include_path = ".;c:\php\lib"
</row>
<row>
<entry><literal>PHP_INI_PERDIR</literal></entry>
<entry>6</entry>
<entry>Entry can be set in &php.ini;, &htaccess; or &httpd.conf;</entry>
</row>
<row>
<entry><literal>PHP_INI_SYSTEM</literal></entry>
<entry>4</entry>
<entry>Entry can be set in &php.ini; or &httpd.conf;</entry>
</row>
<row>
<entry><literal>PHP_INI_ALL</literal></entry>
<entry>7</entry>
<entry>Entry can be set anywhere</entry>
</row>
</tbody>