将英文双引号转换为法文报价

时间:2017-03-01 16:20:06

标签: php regex

如何在php中转换此字符串,例如

$str = 'Hello world "some text"'

'Hello world «some text»'

1 个答案:

答案 0 :(得分:0)

像这样:

<?php
   $str = 'Hello world "some text"';
   $regex = '/"(.*?)"/';
   $subst = '«$1»';
   $result = preg_replace($regex, $subst, $str);
   echo $result;
?>