関数 eregi() は非推奨です。eregi() を置き換えるにはどうすればよいですか。preg_match を試してみましたが、動作しなくなりました。
私はこのヘルプを使用します:
http://takien.com/513/how-to-fix-function-eregi-is-deprecated-in-php-5-3-0.php
前のコード:
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';
}
コード:
if ( ! preg_match("convert$/i", $this->library_path))
{
if ( ! preg_match("/$/i", $this->library_path)) $this->library_path .= "/";
$this->library_path .= 'convert';
}
if (preg_match("gd2$/i", $protocol))
{
$protocol = 'image_process_gd';
}