IntlChar::ispunct()函数是PHP中的内置函数,用于检查给定的输入字符是否为标点符号。
用法:
bool IntlChar::ispunct( $codepoint )
参数:此函数接受单个参数$codepoint,这是必需的。输入参数是整数值或字符,将其编码为UTF-8字符串。
返回值:如果$codepoint是标点符号,则返回True,否则返回False。
以下示例程序旨在说明PHP中的IntlChar::ispunct()函数:
程序1:
<?php
// PHP code to illustrate IntlChar::ispunct()
// function
// Input data is character type
var_dump(IntlChar::ispunct("G"));
// Input data is control character
var_dump(IntlChar::ispunct("\t"));
// Input data is string type
var_dump(IntlChar::ispunct("Geeksforgeeks"));
// Input data is number type
var_dump(IntlChar::ispunct("2018"));
// Input data is single digit
var_dump(IntlChar::ispunct("5"));
// Input data is punctuation character dot
var_dump(IntlChar::ispunct("."));
// Input data is punctuation character comma
var_dump(IntlChar::ispunct(","));
?>
输出:
bool(false) bool(false) NULL NULL bool(false) bool(true) bool(true)
注意:如果将字符串和数字(一位数字除外)用作参数,则它将返回NULL。
程序2:
<?php
// PHP code to illustrate ispunct()
// Declare an array $arr
$arr = array("&", "%", "@", "!", "(", ")", ".", ",", "/", "G", "0");
// Loop run for every array element
foreach ($arr as $val){
// Check each element as code point data
var_dump(IntlChar::ispunct($val));
}
?>
输出:
bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(false) bool(false)
相关文章:
参考:http://php.net/manual/en/intlchar.ispunct.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::ispunct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。