mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-23 04:18:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152424 c90b9560-bf6c-de11-be94-00142212c4b1
64 lines
1.6 KiB
XML
64 lines
1.6 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.5 $ -->
|
|
<!-- splitted from ./en/functions/gmp.xml, last change in rev 1.1 -->
|
|
<refentry id="function.gmp-xor">
|
|
<refnamediv>
|
|
<refname>gmp_xor</refname>
|
|
<refpurpose>Logical XOR</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>resource</type><methodname>gmp_xor</methodname>
|
|
<methodparam><type>resource</type><parameter>a</parameter></methodparam>
|
|
<methodparam><type>resource</type><parameter>b</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Calculates logical exclusive OR (XOR) of two GMP numbers.
|
|
</para>
|
|
<example>
|
|
<title><function>gmp_xor</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$xor1 = gmp_init("1101101110011101", 2);
|
|
$xor2 = gmp_init("0110011001011001", 2);
|
|
|
|
$xor3 = gmp_xor($xor1, $xor2);
|
|
|
|
echo gmp_strval($xor3, 2) . "\n";
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
<para>
|
|
The printout of the above program will be:
|
|
</para>
|
|
<screen>
|
|
<![CDATA[
|
|
1011110111000100
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- 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
|
|
-->
|