mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01:00
14 lines
272 B
PHP
14 lines
272 B
PHP
--TEST--
|
|
Passing encoding as 3rd param to mb_strrpos (legacy)
|
|
--SKIPIF--
|
|
<?php if(!extension_loaded('mbstring')) die('skip mbstring not loaded'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
mb_internal_encoding('UTF-16');
|
|
var_dump(mb_strrpos("abc abc abc", "abc", "UTF-8"));
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(8)
|