當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。