mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
13 lines
272 B
PHP
13 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)
|