|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-06-30 11:42 UTC] kalle@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 07:00:01 2025 UTC |
Description: ------------ register_tick_function() does not check if the first parameter is a valid callback. Reproduce code: --------------- <?php register_tick_function('non_existing_function'); ?> Expected result: ---------------- Warning: 'non_existing_function' is not a valid callback in C:\webserver\webroot\program.php on line 2 ... or something similar Actual result: -------------- No error issued