1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 19:14:16 +02:00
Files
archived-php-src/ext/mbstring/tests/mb_strrpos_encoding_3rd_param.phpt
2018-10-29 18:56:17 +01:00

12 lines
185 B
PHP

--TEST--
Passing encoding as 3rd param to mb_strrpos (legacy)
--FILE--
<?php
mb_internal_encoding('UTF-16');
var_dump(mb_strrpos("abc abc abc", "abc", "UTF-8"));
?>
--EXPECT--
int(8)