|
mcrypt_encrypt(PHP 4 >= 4.0.2, PHP 5) mcrypt_encrypt — Encrypts plaintext with given parameters Описание
string mcrypt_encrypt
( string $cipher
, string $key
, string $data
, string $mode
[, string $iv
] )
Encrypts the data and returns it. Список параметров
Возвращаемые значенияReturns the encrypted data, as a string. Примеры
Пример #1 mcrypt_encrypt() Example
<?php Результат выполнения данного примера: 42 64 See also mcrypt_module_open() for a more advanced API and an example. |
|