mb_substitute_character() 是 PHP 中的內置函數,用於設置或檢索當多字節字符串無法以指定的字符編碼表示時使用的替換字符。
用法:
mb_substitute_character($substitute_character ): string|int|bool
Parameters: 該函數僅接受一個參數,如下所述。
- $substitute_character: 該參數用於指定 Unicode 值,其形式為整數、長整型、字符實體,或者在沒有輸出的情況下為 none。
返回值:如果設置了替換字符,則返回“true”,否則返回“false”。如果替換字符不是,則返回默認設置。
示例 1:下麵的程序演示了mb_substitute_character()函數。
PHP
<?php
$subchar = mb_substitute_character();
echo "Current substitution character: $subchar";
?>
輸出:
Current substitution character: 63
示例 2:下麵的程序演示了mb_substitute_character()函數。
PHP
<?php
echo "The subtitution character = ".mb_substitute_character('long');
?>
輸出:
The subtitution character = 1
參考:https://www.php.net/manual/en/function.mb-substitute-character.php
相關用法
- PHP mb_substitute_character()用法及代碼示例
- PHP mb_substr_count()用法及代碼示例
- PHP mb_substr()用法及代碼示例
- PHP mb_strlen()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_str_split()用法及代碼示例
- PHP mb_strrchr()用法及代碼示例
- PHP mb_strimwidth()用法及代碼示例
- PHP mb_stristr()用法及代碼示例
- PHP mb_split()用法及代碼示例
- PHP mb_strripos()用法及代碼示例
- PHP mb_strstr()用法及代碼示例
- PHP mb_scrub()用法及代碼示例
- PHP mb_strpos()用法及代碼示例
- PHP mb_stripos()用法及代碼示例
- PHP mb_strrichr()用法及代碼示例
- PHP mb_strcut()用法及代碼示例
- PHP mb_convert_case()用法及代碼示例
- PHP mb_check_encoding()用法及代碼示例
- PHP mb_chr()用法及代碼示例
- PHP mb_detect_order()用法及代碼示例
- PHP mb_ereg()用法及代碼示例
- PHP mb_http_input()用法及代碼示例
- PHP mb_convert_encoding()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP mb_substitute_character() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。