php-doc-en/reference/misc/ini.xml
Derick Rethans 5ceab02627 - Fixed typo
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@132731 c90b9560-bf6c-de11-be94-00142212c4b1
2003-06-21 10:28:51 +00:00

152 lines
3.5 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<section id="misc.configuration">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title> Misc. Configuration Options</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
</row>
</thead>
<tbody>
<row>
<entry>ignore_user_abort</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>highlight.string</entry>
<entry>#CC0000</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>highlight.comment</entry>
<entry>#FF9900</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>highlight.keyword</entry>
<entry>#006600</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>highlight.bg</entry>
<entry>#FFFFFF</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>highlight.default</entry>
<entry>#0000CC</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>highlight.html</entry>
<entry>#000000</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>browscap</entry>
<entry>NULL</entry>
<entry>PHP_INI_SYSTEM</entry>
</row>
</tbody>
</tgroup>
</table>
For further details and definition of the PHP_INI_* constants see
<function>ini_set</function>.
</para>
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry id="ini.ignore-user-abort">
<term>
<parameter>ignore_user_abort</parameter>
<type>boolean</type>
</term>
<listitem>
<para>
&true; by default. If changed to &false; scripts will be terminated
as soon as they try to output something after a client has aborted
their connection.
</para>
<para>
See also <function>ignore_user_abort</function>.
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.syntax-highlighting">
<term>
<parameter>highlight.comment</parameter>
<type>string</type>
</term>
<term>
<parameter>highlight.default</parameter>
<type>string</type>
</term>
<term>
<parameter>highlight.html</parameter>
<type>string</type>
</term>
<term>
<parameter>highlight.keyword</parameter>
<type>string</type>
</term>
<term>
<parameter>highlight.string</parameter>
<type>string</type>
</term>
<listitem>
<para>
Colors for Syntax Highlighting mode. Anything that's acceptable in
&lt;font color="??????"&gt; would work.
</para>
</listitem>
</varlistentry>
<varlistentry id="ini.browscap">
<term>
<parameter>browscap</parameter>
<type>string</type>
</term>
<listitem>
<para>
Name (e.g.: <filename>browscap.ini</filename>) and location of browser
capabilities file. See also <function>get_browser</function>.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->