Skip to content

Instantly share code, notes, and snippets.

@BenFausch
Created April 10, 2018 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenFausch/6fa0728e7c1fbdeb939c472420481878 to your computer and use it in GitHub Desktop.
Save BenFausch/6fa0728e7c1fbdeb939c472420481878 to your computer and use it in GitHub Desktop.
multiple string replacements with php str_replace
//loops through each array by key, so $quotes[0] replaces $replace[0]
$quotes = ["\\'",'\\"'];
$replace = ["'",'"'];
$newsletter_article_html = str_replace($quotes, $replace, $newsletter_article_html);
return $newsletter_article_html;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment