这是智能youtube插件的第396-398行smartyoutube.class.php
文件:
function check($the_content, $side = 0)
{
if (strpos($the_content, "httpv") !== false )
{
$char_codes = array(\'×\', \'–\'); // <-- 8211 is an en dash
$replacements = array("x", "--"); // <-- here\'s where it\'s swapping in --
$the_content = str_replace($char_codes, $replacements, $the_content); // <--