Edit report at https://bugs.php.net/bug.php?id=64143&edit=1

 ID:                 64143
 Updated by:         krak...@php.net
 Reported by:        ajaydixit91 at gmail dot com
 Summary:            problem in array_slice function
-Status:             Open
+Status:             Not a bug
 Type:               Bug
 Package:            Arrays related
 Operating System:   redhat enterprise linux 6
 PHP Version:        5.3.21
 Block user comment: N
 Private report:     N

 New Comment:

In your example, the fact that you have instructed the array to begin at offset 
1 has no bearing on the result of the call to array_slice, observe:

<?php
$my = array("other", "vishnu" , "shiva" , "hanu" , "bhrama" );
print_r($my);
print_r(array_slice($my, 1, 3));
?>

You are explicitly instructing the call to array slice to start at offset 1 
(vishnu), and return three elements: vishnu shiva hanu is the only outcome 
possible regardless of the contents of an offset not referenced.


Previous Comments:
------------------------------------------------------------------------
[2013-02-04 16:43:10] ajaydixit91 at gmail dot com

Description:
------------
---
>From manual page: 
>http://www.php.net/function.array-slice#refsect1-function.array-slice-description
---

I encountered this bug in array_slice() function. Here is what i encountered.

I declared an array "my_array" with different offset value.
In my case its offset value is 1. So my_array[0] is not defined. Now when I 
After that, i used the predefined function array_slice. In array_slice i 
entered 1 and 3 as the offset value and required length value. Now as print the 
sliced array, it should display:
  
shiva hanu bhrama

but what i am experiencing is :

vishnu shiva hanu.

It seems like that the array_slice function is not aware of the offset value 
change in the array.




 

Test script:
---------------
<?php
$my_array = array( 1 => "vishnu" , "shiva" , "hanu" , "bhrama" );
print_r($my_array);
echo $my_array[0];   // this is coming undefined //
$slice = array_slice($my_array,1,3);
print_r($slice);

?>





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



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

Reply via email to