About 25,700 results
Open links in new tab
  1. What is the difference between implode () & join ()

    So although explode and implode are unarguably way more dramatic-sounding, I would vote for join as a more universal way to express the concatenation of every value of an array into a string.

  2. php - Alternative to using implode and explode - Stack Overflow

    Jul 11, 2023 · Alternative to using implode and explode [duplicate] Asked 2 years, 4 months ago Modified 2 years, 4 months ago Viewed 388 times

  3. What is the difference between split () and explode ()?

    Dec 2, 2015 · 1 Both are used to split a string into an array, but the difference is that split() uses pattern for splitting whereas explode() uses string. explode() is faster than split() because it doesn't match …

  4. PHP Explode and Implode a String - Stack Overflow

    PHP Explode and Implode a String Asked 10 years, 7 months ago Modified 8 years, 4 months ago Viewed 2k times

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

    Example: explode('.','1.2.3.4',3) === array('1','2','3.4') - while in Javascript, you'll get: '1.2.3.4'.split('.',3) === ['1', '2', '3']. Anyone know how to easily replicate PHP's method?

  6. php - Hyphenate all words in an array then implode all elements using …

    Hyphenate all words in an array then implode all elements using a space as glue Asked 10 years, 10 months ago Modified 5 months ago Viewed 367 times

  7. Difference between explode and explode_outer - Stack Overflow

    Oct 15, 2020 · What is the difference between explode and explode_outer? The documentation for both functions is the same and also the examples for both functions are identical: SELECT explode (array …

  8. mysql - explode results then implode php - Stack Overflow

    Feb 28, 2018 · explode results then implode php Asked 7 years, 5 months ago Modified 7 years, 5 months ago Viewed 2k times

  9. arrays - php implode with quotes - Stack Overflow

    Unconditionally wrapping the imploded string with quotes will result in an empty quoted string when the array is empty -- this doesn't feel ideal because it gives the same result as an array with a lone …

  10. python - Explode out polars column of list items horizontally to new ...

    Nov 7, 2023 · Explode out polars column of list items horizontally to new columns [duplicate] Asked 2 years, 1 month ago Modified 3 months ago Viewed 4k times