|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests |
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 07:00:01 2025 UTC |
Description: ------------ It would be nice if when you register a function to execute at every "n" compiler ticks it receive as the 1st parameter the tick event informations in an array... Test script: --------------- function my_tick_function( $event ) { echo "Event {$event['name']} on {$event['file']} at line {$event['line']} triggered. <br/> \r\n"; } register_tick_function('my_tick_function'); declare(ticks=1) { $S = 'String'; }