You are here

public function Intl::strlen in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-stdlib/src/StringWrapper/Intl.php \Zend\Stdlib\StringWrapper\Intl::strlen()

Returns the length of the given string

Parameters

string $str:

Return value

int|false

Overrides StringWrapperInterface::strlen

File

vendor/zendframework/zend-stdlib/src/StringWrapper/Intl.php, line 53

Class

Intl

Namespace

Zend\Stdlib\StringWrapper

Code

public function strlen($str) {
  return grapheme_strlen($str);
}