Ticket #16661: test-ref-array.php
| File test-ref-array.php, 301 bytes (added by , 15 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | |
| 3 | echo '<pre>'; |
| 4 | |
| 5 | function test_ref( &$ref ) { |
| 6 | echo __FUNCTION__; |
| 7 | $ref = 'yes'; |
| 8 | } |
| 9 | add_action( 'regular_hook', 'test_ref' ); |
| 10 | add_action( 'ref_array_hook', 'test_ref' ); |
| 11 | |
| 12 | $str0 = 'no'; |
| 13 | do_action( 'regular_hook', &$str0 ); |
| 14 | |
| 15 | $str1 = 'nope'; |
| 16 | do_action_ref_array( 'ref_array_hook', array( &$str1 ) ); |