----- 1 -----
Array
(
[0] => zero
[1] => one
[2] => two
[3] => Array
(
[0] => three_0
[1] => three_1
[2] => three_2
)
)
----- -----
Array
(
[0] => zero
[2] => two
[3] => Array
(
[0] => three_0
[1] => three_1
[2] => three_2
)
)
----- 2 -----
Array
(
[0] => zero
[2] => two
[3] => Array
(
[0] => three_0
[1] => three_1
[2] => three_2
)
)
----- 3 -----
val= zero
val= two
Warning: Array to string conversion in /sdf/www/gm/h/how0909/php/sort/array_unset-1.php on line 26
val= Array
Array
(
[0] => zero
[1] => two
[2] => Array
(
[0] => three_0
[1] => three_1
[2] => three_2
)
)
Array
(
[0] => zero
[1] => two
[2] => Array
(
[0] => three_0
[1] => three_1
[2] => three_2
)
)
----- 4 -----