[PHP-DEV] Bug #950: function call with constant int From: bernd_noack <email protected>
Date: 11/24/98

From: bernd_noack <email protected>
Operating system: NT40 Workstation
PHP version: 3.0.5
PHP Bug Type: Misbehaving function
Bug description: function call with constant int

<HTML><BODY>
<?
function test( $msg)
{
        echo $msg."<br>";
}

test( 20);
test( 020);
test( 28);
test( 028);
?>
</HTML></BODY>
------------------------------------------------
This produces:

20
16
28
2

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>