You are here

public function StringWrapperInterface::strlen in Zircon Profile 8

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

Returns the length of the given string

Parameters

string $str:

Return value

int|false

2 calls to StringWrapperInterface::strlen()
AbstractStringWrapper::strPad in vendor/zendframework/zend-stdlib/src/StringWrapper/AbstractStringWrapper.php
Pad a string to a certain length with another string
AbstractStringWrapper::wordWrap in vendor/zendframework/zend-stdlib/src/StringWrapper/AbstractStringWrapper.php
Wraps a string to a given number of characters
4 methods override StringWrapperInterface::strlen()
Iconv::strlen in vendor/zendframework/zend-stdlib/src/StringWrapper/Iconv.php
Returns the length of the given string
Intl::strlen in vendor/zendframework/zend-stdlib/src/StringWrapper/Intl.php
Returns the length of the given string
MbString::strlen in vendor/zendframework/zend-stdlib/src/StringWrapper/MbString.php
Returns the length of the given string
Native::strlen in vendor/zendframework/zend-stdlib/src/StringWrapper/Native.php
Returns the length of the given string

File

vendor/zendframework/zend-stdlib/src/StringWrapper/StringWrapperInterface.php, line 59

Class

StringWrapperInterface

Namespace

Zend\Stdlib\StringWrapper

Code

public function strlen($str);