IntlChar::isbase() function in PHP


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

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 30-Dec-2019

58 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements