Display the text box

mcrypt_list_modes()

« mcrypt_list_algorithms | mcrypt_module_get_algo_block_size »
<?php
$array 
mcrypt_list_modes (
    
  // [string $lib_dir = ini_get("mcrypt.modes_dir")]
);
?>
Result
$array = [
  
=> 'cbc',
  
=> 'cfb',
  
=> 'ctr',
  
=> 'ecb',
  
=> 'ncfb',
  
=> 'nofb',
  
=> 'ofb',
  
=> 'stream',
]
Error : Function mcrypt_list_modes() is deprecated
Examples
#1 mcrypt_list_modes  ()