You appear to be a bot. Output may be restricted
Description
Usage
Tests_Compat_mbSubstr::test_mb_substr( $string, $start, $length, $expected_character_substring );
Parameters
- $string
- ( mixed ) required –
- $start
- ( mixed ) required –
- $length
- ( mixed ) required –
- $expected_character_substring
- ( mixed ) required –
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/compat/mbSubstr.php
Lines:
1 to 4 of 4
public function test_mb_substr( $string, $start, $length, $expected_character_substring ) { $this->assertSame( $expected_character_substring, _mb_substr( $string, $start, $length, 'UTF-8' ) ); }