mirror of
https://github.com/php/php-src.git
synced 2026-04-27 18:23:26 +02:00
9 lines
339 B
PHP
9 lines
339 B
PHP
--TEST--
|
|
Bug #65544: mb title case conversion-first word in quotation isn't capitalized
|
|
--FILE--
|
|
<?php
|
|
var_dump(mb_convert_case("\"or else it doesn't, you know. the name of the song is called 'haddocks' eyes.'\"", MB_CASE_TITLE));
|
|
?>
|
|
--EXPECT--
|
|
string(80) ""Or Else It Doesn't, You Know. The Name Of The Song Is Called 'Haddocks' Eyes.'""
|