You are here

public function Native::strlen in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-stdlib/src/StringWrapper/Native.php \Zend\Stdlib\StringWrapper\Native::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/Native.php, line 104

Class

Native

Namespace

Zend\Stdlib\StringWrapper

Code

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