Thanks. I tried your suggestion, but It's still error...
I think line 40 :
PHP Code:
$left = $normal;
It's must be number, cause it use for limit in line :
PHP Code:
$tmp = 0;
while ($left < $right) {
$tmp = $left++;
}
I changed line 40 to :
PHP Code:
$left = strlen($normal)
It's works, but sometimes the pattern cannot find...