Skip to content

Instantly share code, notes, and snippets.

@PoTHuYJoHN
Created December 22, 2014 15:12
Show Gist options
  • Save PoTHuYJoHN/ba0a0b330030ed5d757b to your computer and use it in GitHub Desktop.
Save PoTHuYJoHN/ba0a0b330030ed5d757b to your computer and use it in GitHub Desktop.
Convert double quotes to single for Facebook share
<?php
/**
* Persist quotes. For Facebook share etc.
* @param string $value
*
* @return mixed
*/
public static function convertQuotes($value)
{
return str_replace('"', '\'', htmlspecialchars_decode($value, ENT_QUOTES));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment