dave Sun Feb 8 22:32:37 2004 EDT
Modified files: /phpdoc/en/reference/gmp/functions gmp-clrbit.xml gmp-xor.xml Log: - Forgot <?php tags. http://cvs.php.net/diff.php/phpdoc/en/reference/gmp/functions/gmp-clrbit.xml?r1=1.3&r2=1.4&ty=u Index: phpdoc/en/reference/gmp/functions/gmp-clrbit.xml diff -u phpdoc/en/reference/gmp/functions/gmp-clrbit.xml:1.3 phpdoc/en/reference/gmp/functions/gmp-clrbit.xml:1.4 --- phpdoc/en/reference/gmp/functions/gmp-clrbit.xml:1.3 Sun Feb 8 03:46:22 2004 +++ phpdoc/en/reference/gmp/functions/gmp-clrbit.xml Sun Feb 8 22:32:36 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.3 $ --> +<!-- $Revision: 1.4 $ --> <!-- splitted from ./en/functions/gmp.xml, last change in rev 1.1 --> <refentry id="function.gmp-clrbit"> <refnamediv> @@ -29,9 +29,11 @@ <title><function>gmp_clrbit</function> example</title> <programlisting role="php"> <![CDATA[ +<?php $a = gmp_init("0xff"); gmp_clrbit($a, 0); // index starts at 0, least significant bit echo gmp_strval($a) . "\n"; +?> ]]> </programlisting> <para> http://cvs.php.net/diff.php/phpdoc/en/reference/gmp/functions/gmp-xor.xml?r1=1.3&r2=1.4&ty=u Index: phpdoc/en/reference/gmp/functions/gmp-xor.xml diff -u phpdoc/en/reference/gmp/functions/gmp-xor.xml:1.3 phpdoc/en/reference/gmp/functions/gmp-xor.xml:1.4 --- phpdoc/en/reference/gmp/functions/gmp-xor.xml:1.3 Sun Feb 8 03:46:23 2004 +++ phpdoc/en/reference/gmp/functions/gmp-xor.xml Sun Feb 8 22:32:36 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.3 $ --> +<!-- $Revision: 1.4 $ --> <!-- splitted from ./en/functions/gmp.xml, last change in rev 1.1 --> <refentry id="function.gmp-xor"> <refnamediv> @@ -20,6 +20,7 @@ <title><function>gmp_xor</function> example</title> <programlisting role="php"> <![CDATA[ +<?php $xor1 = gmp_init("1101101110011101", 2); $xor2 = gmp_init("0110011001011001", 2);