About 31,900 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. Javascript Equivalent to PHP Explode () - Stack Overflow

    Kudos for being the ONLY one, as far as I can see, to provide an ACTUAL equivalent to PHP's explode functionality (as per the original question).

  3. 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 …

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

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

  5. arrays - php implode with quotes - Stack Overflow

    31 No, the way that you're doing it is just fine. implode() only takes 1-2 parameters (if you just supply an array, it joins the pieces by an empty string).

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

    Dec 2, 2015 · 61 It's been deprecated because explode() is substantially faster because it doesn't split based on a regular expression, so the string doesn't have to be analyzed by the regex …

  7. PHP Explode and Implode a String - Stack Overflow

    0 1- Implode is a function in php where you can convert a array into string Ex-

  8. Implode an array with JavaScript? - Stack Overflow

    Nov 10, 2010 · 0 array.join was not recognizing ";" how a separator, but replacing it with comma. Using jQuery, you can use $.each to implode an array (Note that output_saved_json is the …

  9. Implode and Explode Multi dimensional arrays [duplicate]

    Oct 10, 2010 · This questions is incorrectly marked as a duplicate of implode-data-from-a-multi-dimensional-array. This question is about imploding / exploding in general while the other is …

  10. Php multiple delimiters in explode - Stack Overflow

    Feb 10, 2011 · 87 You can take the first string, replace all the @ with vs using str_replace, then explode on vs or vice versa.