Date: 08/12/01
- Next message: Marco Cucinato: "[PHP-DOC] array.xml, again"
- Previous message: Hojtsy Gabor: "[PHP-DOC] cvs: phpdoc / configure.in"
- Next in thread: Jeroen van Wolffelaar: "[PHP-DOC] Re: Another array.xml doc error?"
- Reply: Jeroen van Wolffelaar: "[PHP-DOC] Re: Another array.xml doc error?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I've tried this code (array.xml, lines 1415-1425, english)
$input = array (4,"3",3,"4",4,4);
$result = array_unique ($input);
print_r($result);
// this will output :
//Array
//(
// [0] => 3
// [1] => 3
// [2] => 4
// [3] => 4
//)
but my PHP 4.0.4pl1 says instead
//Array
//(
// [0] => 4
// [1] => "3"
// [2] => 3
// [3] => "4"
//)
can somebody confirm this?
-- Marco Cucinato
- Next message: Marco Cucinato: "[PHP-DOC] array.xml, again"
- Previous message: Hojtsy Gabor: "[PHP-DOC] cvs: phpdoc / configure.in"
- Next in thread: Jeroen van Wolffelaar: "[PHP-DOC] Re: Another array.xml doc error?"
- Reply: Jeroen van Wolffelaar: "[PHP-DOC] Re: Another array.xml doc error?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

