The IntlChar::isbase() function is used to check the given input data is a base character or not.
Syntax
IntlChar::isbase( val)
Parameters
val − An integer or character encoded as a UTF-8 string. Required.
Return
The IntlChar::isbase() function returns TRUE if the val is a base character.
Example
The following is an example −
<?php
var_dump(IntlChar::isbase("D"));
echo "<br>";
var_dump(IntlChar::isbase("EJklomno"));
echo "<br>";
var_dump(IntlChar::isbase("123"));
echo "<br>";
var_dump(IntlChar::isbase("5757jhgbjh"));
?>Output
The following is the output −
bool(true) NULL NULL NULL