/hphp/test/slow/ext_function/register_postsend_function-exit.php
http://github.com/facebook/hiphop-php · PHP · 23 lines · 19 code · 4 blank · 0 comment · 0 complexity · c051f45d32bf445c287f56761c7a4f26 MD5 · raw file
- <?hh
- <<__EntryPoint>>
- function main_register_postsend_function_exit() {
- register_postsend_function(function () {
- var_dump('first');
- });
- register_postsend_function(function () {
- var_dump('second, start');
- register_postsend_function(function () {
- var_dump('third, start');
- exit;
- var_dump('third, after exit - FAIL');
- });
- var_dump('second, end');
- });
- register_postsend_function(function () {
- var_dump('fourth');
- });
- }