Document INI_* constants

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@323643 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2012-02-29 00:31:19 +00:00
parent f052ac1bd7
commit df109259e7
2 changed files with 39 additions and 4 deletions

View file

@ -202,22 +202,22 @@ include_path = ".;c:\php\lib"
</row>
</thead>
<tbody>
<row xml:id="constant.ini-user">
<row>
<entry><literal>PHP_INI_USER</literal></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>
</entry>
</row>
<row xml:id="constant.ini-perdir">
<row>
<entry><literal>PHP_INI_PERDIR</literal></entry>
<entry>Entry can be set in &php.ini;, &htaccess; or &httpd.conf;</entry>
</row>
<row xml:id="constant.ini-system">
<row>
<entry><literal>PHP_INI_SYSTEM</literal></entry>
<entry>Entry can be set in &php.ini; or &httpd.conf;</entry>
</row>
<row xml:id="constant.ini-all">
<row>
<entry><literal>PHP_INI_ALL</literal></entry>
<entry>Entry can be set anywhere</entry>
</row>

View file

@ -156,6 +156,41 @@
</tgroup>
</table>
<table>
<title>INI constants</title>
<tgroup cols="3">
<thead>
<row>
<entry>Constant</entry>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="constant.ini-user">
<entry><literal>INI_USER</literal></entry>
<entry>1</entry>
<entry>Unused</entry>
</row>
<row xml:id="constant.ini-perdir">
<entry><literal>INI_PERDIR</literal></entry>
<entry>2</entry>
<entry>Unused</entry>
</row>
<row xml:id="constant.ini-system">
<entry><literal>INI_SYSTEM</literal></entry>
<entry>4</entry>
<entry>Unused</entry>
</row>
<row xml:id="constant.ini-all">
<entry><literal>INI_ALL</literal></entry>
<entry>7</entry>
<entry>Unused</entry>
</row>
</tbody>
</tgroup>
</table>
<simpara>
Assert constants, these values are used to set
the assertion options in <function>assert_options</function>.