Function eregi() is deprecated

Function eregi() is deprecated. How can i replace eregi(). I try with preg_match but then stop working. i us ethis help: http://takien.com/513/how-to-fix-function-eregi-is-deprecated-in-php-5-3-0.php CODE BEFORE: if ( ! eregi("convert$", $this->library_path)) { if ( ! eregi("/$", $this->library_path)) $this->library_path .= "/"; $this->library_path .= 'convert'; } if (eregi("gd2$", $protocol)) { $protocol = 'image_process_gd'; } CODE THEN: if ( ! … Read more