Skip to content
Advertisement

PHP array – explode some comma separated elements into new items

How can I take an array with individual strings but also comma separated strings and explode the comma separated items into individual items? For instance:

JavaScript

$product_array[] returns:

JavaScript

How can I split item 3 into individual items 3, 4 and 5 so that $product_array returns:

JavaScript

Advertisement

Answer

JavaScript

Here is fast solution 🙂 if there is comma it will explode it before adding it into your array.

  • As other people notice myslq_ functions are deprecated .. Better use mysqli or PDO instead 🙂
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement