Make WordPress Core

Ticket #16661: test-ref-array.php

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