ID:               30833
 User updated by:  gms08701 at yahoo dot com
 Reported By:      gms08701 at yahoo dot com
 Status:           Assigned
 Bug Type:         Arrays related
 Operating System: FreeBSD 5.3
 PHP Version:      5.0.2
 Assigned To:      ilia
 New Comment:

I didnt try your patch, as its against version 1.282 of array.c.
The latest version of php5 that comes with FreeBSD, array.c is at
version 1.266.2.5.
Please advise, thanks.


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

[2004-11-19 15:02:06] [EMAIL PROTECTED]

This patch should fix the problem:
http://tony2001.phpclub.net/dev/tmp/bug30833.diff

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

[2004-11-19 00:20:12] gms08701 at yahoo dot com

Description:
------------
I recently upgraded to php 5.0.2 from 4.3.9.
The array that is input into array_count_values, is being 
modified.
Under 4.3.9, this function worked as expected.

Reproduce code:
---------------
<?php

header('content-type: text/plain');

$foo = array('abc', '0000');
var_export($foo);

echo "\n\n";

$count = array_count_values( $foo );
var_export($count);

echo "\n\n";

var_export($foo);

?>

Expected result:
----------------
array (
  0 => 'abc',
  1 => '0000',
)

array (
  'abc' => 1,
  '0000' => 1,
)

array (
  0 => 'abc',
  1 => '0000',
)

Actual result:
--------------
array (
  0 => 'abc',
  1 => '0000',
)

array (
  'abc' => 1,
  0 => 1,
)

array (
  0 => 'abc',
  1 => 0,
)


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


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

Reply via email to