Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php uppercase

//string to all uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
//php string to uppercase
$string = strtoupper($string);
// = "STRING WITH MIXED USE OF UPPERCASE AND LOWERCASE"
Comment

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!
?>

Comment

capitalize php

<?php
 
$str_first_cap = "hang on, this is first letter capital example!";
 
echo ucwords($str_first_cap);
 
?>
Comment

php capitalize first letter

ucfirst("hello world!");
Comment

PREVIOUS NEXT
Code Example
Php :: clear laravel cache 
Php :: yii2 get action class in view 
Php :: laravel relationship with for single data 
Php :: wordpress get page slug 
Php :: php from 
Php :: jquery ajax 500 internal server error php 
Php :: artisan cache clear 
Php :: php pdo Check if row exists in the database 
Php :: centos :Install or enable PHP gd extension. 
Php :: start php server 
Php :: laravel decrement 
Php :: php support block-level scope 
Php :: add new column in existing table in laravel migration 
Php :: php why " " not new line 
Php :: php parse html 
Php :: check string php 
Php :: how to use dompdf in laravel 
Php :: how to reverse fetch assoc in php 
Php :: php elseif 
Php :: laravel validation array 
Php :: blade formatting vscode 
Php :: laravel get file contents from storage 
Php :: laravel model tree 
Php :: php foreach array 
Php :: Auth::routes(); why display error in route laravel 8 
Php :: wp get post author link 
Php :: laravel faker title 
Php :: php date is before 
Php :: eliminar ultimo caracter string php 
Php :: object values to array php 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =