We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
<?php $txt = 'acme & co'; echo mb_convert_case($txt, MB_CASE_TITLE, 'UTF-8'), PHP_EOL;
Resulted in this output:
Acme &Amp; Co
But I expected this output instead:
Acme & Co
Using uc_words produces the expected result:
uc_words
<?php $txt = 'acme & co'; echo ucwords($txt), PHP_EOL;
results in
PHP 8.4.5, PHP 8.2.26
No response
The text was updated successfully, but these errors were encountered:
Maybe this seems not include in DerivedCoreProperties.txt.
Sorry, something went wrong.
No branches or pull requests
Description
The following code:
Resulted in this output:
But I expected this output instead:
Using
uc_words
produces the expected result:results in
PHP Version
PHP 8.4.5, PHP 8.2.26
Operating System
No response
The text was updated successfully, but these errors were encountered: