On 2005/01/12, at 17:12, Moriyoshi Koizumi wrote:
However, it looks like the rule doesn't apply to the current HEAD.
<?php function op_array() { $a; // 1 $a; // 2 $a = $a + 2; // 3, 4 // ... total 4 temporary variables } ?>
Copy'n'paste mistake.. This part should have been like
<?php function op_array() { $a; // 0 $a; // 0 $a = $a + 2; // 1, 2 // ... total 2 temporary variables } ?>
Moriyoshi
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php