Lines Matching refs:b
8 $b = $a;
9 mb_convert_variables("EUC-JP", "Shift_JIS", $b);
11 debug_zval_dump($b);
13 unset($b);
16 $b = &$a;
17 mb_convert_variables("EUC-JP", "Shift_JIS", $b);
19 debug_zval_dump($b);
21 unset($b);
24 $b = array($a);
25 $c = $b;
27 debug_zval_dump($b);
30 unset($b);
34 $b = array(&$a);
35 $c = $b;
37 debug_zval_dump($b);
40 unset($b);
44 $b = array($a);
45 $c = &$b;
47 debug_zval_dump($b);
50 unset($b);
54 $b = array(&$a);
55 $c = &$b;
57 debug_zval_dump($b);
60 unset($b);
64 $b = $a;
65 $c = $b;
67 debug_zval_dump($b);
70 unset($b);