xref: /php-src/ext/mbstring/tests/bug65544.phpt (revision 4083600b)
1--TEST--
2Bug #65544: mb title case conversion-first word in quotation isn't capitalized
3--EXTENSIONS--
4mbstring
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