phparraysstring-formattingphp-5.4

Reformat print_r() output to exclude array keys and separate values with commas


I am trying to convert indexed array to normal array. Basically what get is:

Array ( [0] => 14 [1] => 19 [2] => 20 )

And I need is:

Array(14,19,20);

I tried over Google but not information found. I think this kind of function isn't available in PHP, is there any?


Solution

  • You're chasing shadows:
    Both of the arrays you've shown are equal.

    There is no such thing as an unindexed array in PHP.

    But if you really want to be sure, use $newArray = array_values($array)