Programming Articles - Page 2866 of 3368

IntlChar isgraph() function in PHP

Samual Sam
Updated on 30-Dec-2019 10:13:27

93 Views

The IntlChar isgraph()function checks that the entered value is a graphic character or not.Syntaxbool IntlChar::isgraph (val)Parametersval − An integer or character encoded as a UTF-8 string.ReturnThe IntlChar isgraph() function returns TRUE of val is a graphic character.ExampleThe following is an example −OutputThe following is the output −bool(true) bool(false) bool(false) bool(true)

IntlChar isMirrored() function in PHP

karthikeya Boyini
Updated on 30-Dec-2019 10:12:25

56 Views

The IntlChar isMirrored()function is used to check whether the entered value contains Bidi_Mirrored property or not.Syntaxbool IntlChar::isMirrored (val)Parametersval − An integer or character encoded as a UTF-8 string.ReturnThe IntlChar isMirrored()function returns TRUE if the entered value has the Bidi_Mirrored propertyExampleThe following is an example −OutputThe following is the output −bool(true) bool(true) bool(false) bool(false)

IntlChar::isblank() function in PHP

Samual Sam
Updated on 30-Dec-2019 10:11:54

105 Views

TheIntlChar::isblank() function checks whether the entered value isblank or horizontal space character.SyntaxIntlChar::isblank (val)Parametersval − An integer or character encoded as a UTF-8 string.ReturnThe IntlChar::isblank() function returns TRUE if the entered value isblank or horizontal space character.ExampleThe following is an example −OutputThe following is the output −bool(true) NULL bool(false) bool(false)

IntlChar::islower() function in PHP

karthikeya Boyini
Updated on 30-Dec-2019 10:11:24

97 Views

The IntlChar::islower() function check whether the given input character is a lowercase character or not.Syntaxbool IntlChar::islower(val)Parametersval − A character encoded as a UTF-8 string.ReturnThe IntlChar::islower() function returns TRUE if the entered value is a lowercase character.ExampleThe following is an example −OutputThe following is the output −bool(true) bool(false)

IntlChar::isupper() function in PHP

Samual Sam
Updated on 30-Dec-2019 08:47:11

183 Views

The IntlChar::isupper()function check whether the given input character is an uppercase character or not.Syntaxbool IntlChar::isupper(val)Parametersval − A character encoded as a UTF-8 string.ReturnThe IntlChar::isupper()function returns TRUE if the entered value is an uppercase character.ExampleThe following is an example −OutputThe following is the output −bool(false) bool(true)

IntlChar::charDigitValue() function in PHP

karthikeya Boyini
Updated on 30-Dec-2019 08:46:05

44 Views

The IntlChar::charDigitValue() function checks if the entered value is a decimal digit value or not.Syntaxint IntlChar::charDigitValue(val)Parametersval − A character or integer value encoded as a UTF-8 string.ReturnThe IntlChar::charDigitValue() function returns TRUE if the entered value is a decimal digit.ExampleThe following is an example −OutputThe following is the output −NULL int(1) NULL NULL

IntlChar::isWhitespace() function in PHP

Samual Sam
Updated on 30-Dec-2019 08:43:35

59 Views

The IntlChar::isWhitespace() function checks whether the given input character is a WhiteSpace character or not.SyntaxIntlChar::isWhitespace(val)Parametersval − A character or integer value encoded as a UTF-8 string.ReturnThe IntlChar::isWhitespace()function returns TRUE if val is a WhiteSpace character.ExampleThe following is an example −OutputThe following is the output −bool(false) bool(true) NULL

IntlChar::isUAlphabetic() function in PHP

karthikeya Boyini
Updated on 30-Dec-2019 08:42:55

45 Views

The IntlChar::isUAlphabetic() function is used to check whether the entered value is an Alphabetic Unicode character or not.SyntaxIntlChar::isUAlphabetic(val)Parametersval − A character or integer value encoded as a UTF-8 string.ReturnThe IntlChar::isUAlphabetic() function returns TRUE if val is Alphabetic Unicode Character.ExampleThe following is an example −OutputThe following is the output −NULL bool(true) NULL

IntlChar::charMirror() function in PHP

Samual Sam
Updated on 30-Dec-2019 08:40:28

53 Views

The IntlChar::charMirror() functionfind the “mirror-image” character from the entered character.SyntaxIntlChar::charMirror(val)Parametersval − A character or integer value encoded as a UTF-8 string.ReturnThe IntlChar::charMirror() function returns another Unicode code point that may serve as a mirror-image substitute, or codepoint itself if there is no such mapping or codepoint does not have the Bidi_Mirrored property.ExampleThe following is an example −OutputThe following is the output −string(1) "K" string(1) "*" string(1) "{" string(1) "]" string(1) ")"

IntlChar::isIDStart() function in PHP

karthikeya Boyini
Updated on 30-Dec-2019 08:39:21

46 Views

The IntlChar::isIDStart() function is used to check whether the entered character is permissible since the first character is anidentifier or not.Syntaxbool IntlChar::isIDStart(val)Parametersval − A character or integer value encoded as a UTF-8 string.ReturnThe IntlChar::isIDStart()function returns TRUE if val is an identifier character.ExampleThe following is an example −OutputThe following is the output −NULL bool(false) bool(true)

Advertisements