IntlChar::isprint()函數是PHP中的內置函數,用於檢查給定的輸入字符是否為可打印字符。
用法:
bool IntlChar::isprint( $codepoint )
參數:此函數接受單個參數$codepoint,這是必需的。輸入參數是整數值或字符,將其編碼為UTF-8字符串。
返回值:如果$codepoint是可打印字符,則返回True,否則返回False。
以下示例程序旨在說明PHP中的IntlChar::isprint()函數:
程序1:
<?php
// PHP code to illustrate IntlChar::isprint()
// function
// Input data is character type
var_dump(IntlChar::isprint("G"));
// Input data is special character
var_dump(IntlChar::isprint("@"));
// Input data is control character
var_dump(IntlChar::isprint("\t"));
// Input data is string type
var_dump(IntlChar::isprint("Geeksforgeeks"));
// Input data is number
var_dump(IntlChar::isprint("2018"));
// Input data is single digit
var_dump(IntlChar::isprint("5"));
?>
輸出:
bool(true) bool(true) bool(false) NULL NULL bool(true)
注意:如果將String和Numbers用作參數,則它將返回NULL。
程序2:
<?php
// PHP code to illustrate iscntrl()
// Declare an array $arr
$arr = array("G", "GeeksforGeeks", "^", "1001", "6",
"\n", "\n\n", "\t");
// Loop run for every array element
foreach ($arr as $val){
// Check each element as code point data
var_dump(IntlChar::isprint($val));
}
?>
輸出:
bool(true) NULL bool(true) NULL bool(true) bool(false) NULL bool(false)
相關文章:
- PHP | IntlChar::iscntrl()函數
- PHP | IntlChar::isalpha()函數
- PHP | IntlChar::isblank()函數
- PHP | IntlChar::isbase()函數
參考: http://php.net/manual/en/intlchar.isprint.php
相關用法
- d3.js d3.lab()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自Mithun Kumar大神的英文原創作品 PHP | IntlChar::isprint() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。