fork download
  1. <?php
  2.  
  3. $cipher = 'AES-128-ECB';
  4. $ivLength = openssl_cipher_iv_length($cipher);
  5. var_dump($ivLength);
Success #stdin #stdout 0.03s 25884KB
stdin
Standard input is empty
stdout
int(0)