didou Sun Oct 26 12:35:37 2003 EDT
Modified files:
/phpdoc/en/reference/info/functions ini-get.xml
Log:
correcting the example (register_globals)
reformating to use screen notation
Index: phpdoc/en/reference/info/functions/ini-get.xml
diff -u phpdoc/en/reference/info/functions/ini-get.xml:1.6
phpdoc/en/reference/info/functions/ini-get.xml:1.7
--- phpdoc/en/reference/info/functions/ini-get.xml:1.6 Thu Jun 19 06:22:40 2003
+++ phpdoc/en/reference/info/functions/ini-get.xml Sun Oct 26 12:35:36 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/info.xml, last change in rev 1.64 -->
<refentry id="function.ini-get">
<refnamediv>
@@ -49,17 +49,22 @@
print 'post_max_size = ' . ini_get('post_max_size') . "\n";
print 'post_max_size+1 = ' . (ini_get('post_max_size')+1) . "\n";
-/*
-This script will produce:
+?>
+]]>
+ </programlisting>
+ <para>
+ This script will produce:
+ </para>
+ <screen>
+<![CDATA[
display_errors = 1
-register_globals =
+register_globals = 0
post_max_size = 8M
post_max_size+1 = 9
-*/
-?>
+
]]>
- </programlisting>
+ </screen>
</informalexample>
</para>
</note>