About 49,600 results
Open links in new tab
  1. php - Explode each values of Array element - Stack Overflow

    Aug 29, 2016 · I have an array like : Array ( [2] => 2,6 [3] => 1 [4] => 14 [5] => 10 [6] => 8 ) I want to explode each element of an array and return a new array using array_map, s...

  2. php - Explode a string with two sets of delimiters into an …

    @mickmackusa: Sure, there's probably a loop somewhere under the hood there. For that matter, the PHP interpreter is almost certainly using a loop to execute the code anyway, so even …

  3. Explode to array and print each element as list item

    PHP explode array then loop through values and output to variable. 1. Make an array of associative rows ...

  4. Directly access element by index from explode()'s returned array

    php's explode array index. 0. Split a pipe-delimited string of attribute declarations into a 2d array with ...

  5. php - Remove time expressions from a flat array of datetime …

    How this code works is that with the function we explode the array at the index provided by the function parameter and add this to our returning array. Then we check if there is a value set at …

  6. php - explode and select each element from array - Stack Overflow

    Oct 16, 2012 · I have a small task where I have a mysql table "shops".It contains a column "categories". Each field of categories contains diiferent values like "22,44,33,55,24,33,22" Now …

  7. php - Parse a string with three delimiters into an associative array …

    Multi-dimensional array and explode function in PHP. 0. PHP Explode multidimensional arrays. Hot Network ...

  8. Explode string into array with no empty elements?

    PHP's explode function returns an array of strings split on some provided substring. It will return empty strings when there are leading, trailing, or consecutive delimiters, like this: var_dump(ex...

  9. Javascript Equivalent to PHP Explode () - Stack Overflow

    Used explode to convert php string to array, need help manipulating this in javascript. 56.

  10. php - Exploding by Array of Delimiters - Stack Overflow

    php's explode method doesn't support multiple delimiters, so you can't pass it an array. Also, what kind of string are you parsing that has multiple delimiters? you're best bet would be to loop …

Refresh