<?php set_error_handler( function (int $code, string $message, string $file, int $line) : void { echo sprintf('Deprecation: "%s" in %s:%d', $message, $file, $line); }, E_USER_DEPRECATED ); @trigger_error('hello', E_USER_DEPRECATED); trigger_error('world', E_USER_NOTICE);
You have javascript disabled. You will not be able to edit any code.