当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mb_regex_encoding()用法及代码示例


mb_regex_encoding() 是 PHP 中的内置函数,用于设置和检索多字节正则表达式的编码。

用法:

mb_regex_encoding(?string $encoding = null): string|bool

Parameters: 该函数仅接受一个参数,如下所述。

  • $编码:该参数定义您将在此程序中使用哪种编码。如果省略编码,它将使用内部编码。

返回值:返回类型为mb_regex_encoding()我混合,这意味着该函数可以根据使用它的上下文返回不同类型的值。如果你调用mb_regex_encoding()不带任何参数,它将以字符串形式返回当前字符编码。

示例 1:以下程序演示了mb_regex_encoding() 函数。

PHP


<?php 
mb_regex_encoding('ISO-8859-1'); 
     
   // Search a string using a regular expression  
   // with ISO-8859-1 characters 
   $string = 'The café is closed.'; 
if (mb_ereg('^The café is closed.$', $string)) { 
    echo 'The string matches the regular expression!';  
} else { 
    echo 'The string does not match the regular expression.'; 
} 
?>

输出:

The string matches the regular expression! 

示例 2:下面的程序演示了mb_regex_encoding()函数。

PHP


<?php 
mb_regex_encoding('UTF-8'); 
$success = mb_regex_encoding('ISO-8859-1'); 
  
if ($success) { 
   echo 'New encoding set successfully.'; 
} else { 
   echo 'Failed to set new encoding.'; 
} 
?>

输出:

New encoding set successfully. 

参考: https://www.php.net/manual/en/function.mb-regex-encoding.php



相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_regex_encoding() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。