(
    [durum] => kritik
    [satir] => 20
    [kaynak] => /home/bogee/public_html/zl_sistem/kutuphane/kripto/karakter.php
    [seviye] => 1
    [mesaj] => Uncaught Error: Call to undefined function kripto\mcrypt_create_iv() in /home/bogee/public_html/zl_sistem/kutuphane/kripto/karakter.php:20
ilgili satıra gittiğimde

function __construct()
    {
        $this->key   = 'X2RboK)83cvnrHR3I8fXyVgp6wadVGsUDYy11E$';
        $this->etype = MCRYPT_RIJNDAEL_256;
        $this->mcmod = MCRYPT_MODE_ECB;
        $this->rand  = MCRYPT_RAND;
        $this->iv    = @mcrypt_create_iv(@mcrypt_get_iv_size($this->etype, $this->mcmod), $this->rand);
        if (!function_exists('mcrypt_create_iv')) {
            zl_hata('Class needs Mcrypt library to work.', 'Kripto Kütüphanesi');
        }

        if (version_compare(PHP_VERSION, '5.3.0') === -1) {
            zl_hata('Class needs at least PHP 5.3.0 to work.', 'Kripto Kütüphanesi');
        }
    }
bu hatayı nasıl çözebilirim?