how to make first letter only captial using php. how to make first letter only captial using php.
Php has a little function call ucfirst($string);
where you can make sure the first letter of the string is a captial. Please not though that this will only work if the string is lower case, it only changes the first letter no others so if your string is all captials you won't notice a difference.
If you want to change captials to this then you have to add a little more
<?php
$string = 'HELLO WORLD!';
echo ucfirst(strtolower($string)); // Hello world!
?>


Trending right now
Enable the hidden admin on windows 10 Natural Remedies and Dietary Approach for Psoriasis If the covid vaccine is safe and effective why does someone need to be around you for 15 minutes aft How to get your child into rainbows brownies guiding scouts beavers when there is a waiting list Google ads for electricians in the UK Miracles Will Happen For 24 hours after reading The Hidden Question That Tricks Your Brain Into Attracting Massive Wealth Effortlessly The Hidden Question That Tricks Your Brain Into Attracting Massive Wealth Effortlessly How to stop posts from facebook groups showing in my timeline. A Beginners Guide to Fitness for Women Over 50 Foods to avoid during H pylori infection Natural remedies for Asthma List of Facebook groups that are good to advertise your business on in the UK How to unmark posting as spam on facebook Hide Council tax letter template after receiving a summons Easy and simple way to cut foam using something you already have in the house Simple easy way to get out of jury service with no hassle. Council Tax attachment of earnings removal letter How to stop bank scammers over the phone quickly and easily How to make water Alkaline How to change your name on facebook Some things I am selling please have a look How to unblock a plug hole in your bath How to tie a tie Lowell debt collection agency. How to get them off your back. Acts are not laws How to open a jar easily without strain Good businesses to start with no experience H and M 10 percent discount code People Do not Really Care And That is the Truth Recieved a text from royal mail is it a scam Free packing packaging. Do you want to get free or low cost packing easily Remove a tomato stain from clothes easily The secret to getting your kids dressed in 5 minutes or less in the morning How to remove bailiffs clamp How to make first letter only captial using php.
|