21 Dec 2020
Wenn man PNP4Nagios in der Version 0.6.26 mit PHP 7.2 verwendet, kommt es zu dieser Fehlermeldung:
Please check the documentation for information about the following error.
sizeof(): Parameter must be an array or an object that implements Countable
file [line]:
application/models/data.php [979]:
Lösung des Problems:
[...]
/*
*
*/
public function getFirstPage(){
$pages = $this->getPages();
// chrissie
if(is_array($pages) && sizeof($pages) > 0 ){
// end chrissie
return urldecode($pages[0]);
}else{
return FALSE;
}
}
[...]