Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php change sting to caps

$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);

echo $uppercase;
Comment

convert all text in php to uppercase

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
?>
Comment

PREVIOUS NEXT
Code Example
Php :: array merge laravel 
Php :: laravel make migration controller resource mcr 
Php :: get last 3 characters of string in php 
Php :: php number precision 
Php :: string to float php 
Php :: convert to int laravel 
Php :: eloquent cast date 
Php :: laravel where creation is today carbon 
Php :: parent directory in php 
Php :: in random order laravel 
Php :: how get all files name in one folder in laravel 
Php :: laravel check if eloquent just created 
Php :: php split string by enter 
Php :: laravel delete confirm link 
Php :: How to show php text 
Php :: how to start a session 
Php :: php text colors 
Php :: How to change add to cart button in wordpress 
Php :: failed to open stream permission denied laravel 
Php :: check if date between two dates laravel eloquent 
Php :: unique validation on update laravel 
Php :: laravel auth register false 
Php :: Making visible or hidden attributes from Eloquent temporarily 
Php :: laravel order by 
Php :: sum multiple fields separately in laravel 
Php :: laravel helper function for check string is exist in another string 
Php :: homebrew switch php 
Php :: laravel date validation 
Php :: date format php 
Php :: how to claer the input php 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =