public function ExporterTest::provideNonBinaryMultibyteStrings in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/sebastian/exporter/tests/ExporterTest.php \SebastianBergmann\Exporter\ExporterTest::provideNonBinaryMultibyteStrings()
File
- vendor/
sebastian/ exporter/ tests/ ExporterTest.php, line 303
Class
Namespace
SebastianBergmann\ExporterCode
public function provideNonBinaryMultibyteStrings() {
return array(
array(
implode('', array_map('chr', range(0x9, 0xd))),
5,
),
array(
implode('', array_map('chr', range(0x20, 0x7f))),
96,
),
array(
implode('', array_map('chr', range(0x80, 0xff))),
128,
),
);
}