Здравствуйте!
После перехода на PHP 8.1.6 сразу получил ошибку:
Error: ord(): Passing null to parameter #1 ($character) of type string is deprecated - include/library/jsmin/jsmin2.class.php (339), на строку:
if (ord($get) <= self::ORD_LF) { // EOL reached
Весь код метода выглядит так:
protected function singleLineComment()
{
$comment = '';
while (true) {
$get = $this->get();
$comment .= $get;
if (ord($get) <= self::ORD_LF) { // EOL reached
// if IE conditional comment
if (preg_match('/^\\/@(?:cc_on|if|elif|else|end)\\b/', $comment)) {
return "/{$comment}";
}
return $get;
}
}
}
Подскажите, как это можно исправить?
Спасибо.