- Forgot <?php tags.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@150833 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Dave Barr 2004-02-09 03:32:36 +00:00
parent 6fdca5c152
commit 4eb3c719b6
2 changed files with 5 additions and 2 deletions

View file

@ -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>

View file

@ -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);