mirror of
https://github.com/php/php-src.git
synced 2026-04-13 19:14:16 +02:00
12 lines
185 B
PHP
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)
|