3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_error_handler(function($ErrLevel, $ErrMessage) { if ($ErrLevel == E_RECOVERABLE_ERROR) // order this according to what your app uses most return strpos($ErrMessage, 'must be an instance of string, string') || strpos($ErrMessage, 'must be an instance of integer, integer') || strpos($ErrMessage, 'must be an instance of float, double') || strpos($ErrMessage, 'must be an instance of boolean, boolean') || strpos($ErrMessage, 'must be an instance of resource, resource'); }); function miauw(string $string) { echo 'de catchable FATAL error wordt onderdrukt wanneer $string een string is'; } miauw('woef'); // de catchable FATAL error wordt niet onderdrukt, dus de uitvoer zal stoppen miauw(42); echo 'dit wordt nooit uitgevoerd';

preferences:
49.99 ms | 402 KiB | 5 Q