mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- Example layout
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@124642 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a317e27ddb
commit
1e5b9d8e77
1 changed files with 5 additions and 3 deletions
|
@ -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', '');
|
||||
?>
|
||||
]]>
|
||||
|
|
Loading…
Reference in a new issue