php - How to get the multiple array values into explode function? -


I am getting these values ​​from the database.

  $ Generic = $ res ['normal']; $ Business = $ race ['business']; $ Dos = $ race ['dos']; $ Period = $ race ['period'];  

I have stored values ​​using the implode function. How to get these values ​​in the explosion function?

Just call the separator you used to:

  $ Foo = array (1,2,3,4); $ Unrelated = wrapper ('|', $ foo); $ Restore = explosion ('|', $ unrelated);  

Comments