xref: /PHP-7.4/ext/mbstring/tests/bug65544.phpt (revision c6c9e71a)
1--TEST--
2Bug #65544: mb title case conversion-first word in quotation isn't capitalized
3--SKIPIF--
4<?php require 'skipif.inc'; ?>
5--FILE--
6<?php
7var_dump(mb_convert_case("\"or else it doesn't, you know. the name of the song is called 'haddocks' eyes.'\"", MB_CASE_TITLE));
8?>
9--EXPECT--
10string(80) ""Or Else It Doesn't, You Know. The Name Of The Song Is Called 'Haddocks' Eyes.'""
11