ID:               31301
 Updated by:       [EMAIL PROTECTED]
 Reported By:      aitrus at tresgeek dot net
-Status:           Open
+Status:           Bogus
 Bug Type:         Strings related
 Operating System: Linux
 PHP Version:      4.3.10
 New Comment:

Works fine here:
[EMAIL PROTECTED]:~$ cat bug31301.php
<?php
$foo = " ";

$foo = trim( $foo );

echo "x{$foo}x";
?>

[EMAIL PROTECTED]:~$ php-4.3dev bug31301.php
xx


Previous Comments:
------------------------------------------------------------------------

[2004-12-26 07:44:34] aitrus at tresgeek dot net

updated OS

------------------------------------------------------------------------

[2004-12-26 07:36:57] aitrus at tresgeek dot net

Description:
------------
When passed a string variable with a single space as its contents,
trim() returns a variable with a single space as its contents.

Reproduce code:
---------------
$foo = " ";

$foo = trim( $foo );

echo "x{$foo}x";

--

output is: 'x x'

Expected result:
----------------
trim() should return a empty string (or false).



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=31301&edit=1

Reply via email to