WordPress 函数:remove_accents

将所有重音字符转换为ASCII字符,如果没有重音字符的字符串,就直接返回。

用法

<?php remove_accents( $string ) ?>

参数

$string
(string) (required) 可能含有重音字符的文本
Default: None

返回值

(string) 
转换为ASCII字符的文本。

实例

<?php
$text = "Hoy será un gran día";
echo remove_accents ( $text );
//输出结果:Hoy sera un gran dia
?>

修改记录

Since: 1.2.1

源文件

wp-includes/formatting.php