update : 2015.11.03
php.shukuma.com검색:
|
register_shutdown_function(PHP 4, PHP 5, PHP 7) register_shutdown_function — Register a function for execution on shutdown 설명
Registers a Multiple calls to register_shutdown_function() can be made, and each will be called in the same order as they were registered. If you call exit() within one registered shutdown function, processing will stop completely and no other registered shutdown functions will be called. 인수
반환값값을 반환하지 않습니다. 오류/예외
If the passed callback is not callable a 예제
Example #1 register_shutdown_function() example
<?php 주의
참고
|