Answers for "php explode string by capital letters"

PHP
3

php capital string

<?php
echo strtoupper("Hello WORLD!");
?>
Posted by: Guest on June-26-2020
1

capitalize php

<?php
 
$str_first_cap = "hang on, this is first letter capital example!";
 
echo ucwords($str_first_cap);
 
?>
Posted by: Guest on October-28-2021

Code answers related to "php explode string by capital letters"

Browse Popular Code Answers by Language