php string to uppwe
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
// THIS IS LOWER CASE
php string to uppwe
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
// THIS IS LOWER CASE
strtoupper php
string strtoupper ( $string )
Capitalize in php
<?php
$foo = 'bonjour tout le monde!';
$foo = ucfirst($foo); // Bonjour tout le monde!
$bar = 'BONJOUR TOUT LE MONDE!';
$bar = ucfirst($bar); // BONJOUR TOUT LE MONDE!
$bar = ucfirst(strtolower($bar)); // Bonjour tout le monde!
?>
php open file capital letters or not
$result = current(preg_grep("/".preg_quote($filename)."/i", glob("$path/*")));
php words capitalized
/*
This only Capitalizes words in a string that are entirely alphabetic
and other words are made UPPERCASE
Works well if you have a string of words containing a mixture
of English words and part codes etc
*/
$words = explode(" ", $originalString);
$finalString = "";
foreach($words as $word) {
if(ctype_alpha($word)) {
$word = ucfirst(strtolower($word));
}
else {
$word = strtoupper($word);
}
$finalString .= $word." ";
}
echo rtrim($finalString);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us