- Example layout

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@124642 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Derick Rethans 2003-04-25 19:06:48 +00:00
parent a317e27ddb
commit 1e5b9d8e77

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/mcrypt.xml, last change in rev 1.7 -->
<refentry id="function.mcrypt-module-open">
<refnamediv>
@ -34,11 +34,13 @@
</para>
<para>
<example>
<title><function>mcrypt_module_open</function> Example</title>
<title><function>mcrypt_module_open</function> examples</title>
<programlisting role="php">
<![CDATA[
<?php
$td = mcrypt_module_open (MCRYPT_DES, '', MCRYPT_MODE_ECB, '/usr/lib/mcrypt-modes');
$td = mcrypt_module_open (MCRYPT_DES, '',
MCRYPT_MODE_ECB, '/usr/lib/mcrypt-modes');
$td = mcrypt_module_open ('rijndael-256', '', 'ofb', '');
?>
]]>