在html中转换为“to”

时间:2013-07-29 02:53:57

标签: php html

我试过的代码:

$var = '<a href="hellow"> Test </a>'; // Convert " to '

echo preg_replace('/<([^<>]+)>/e', '"<" . str_replace(\'"\', "\'", "$1") . ">"', $var);

1 个答案:

答案 0 :(得分:0)

echo preg_replace_callback(
    '/<([^<>]+)>/',
    function($m) { return str_replace('"', "'", $m[0]); },
    $var);