Posts

Showing posts from June, 2017

How to set first char of string as capital letter(uppercase)

Image
Use ucfirst() function to set uppercase first char of string <?php echo   ucfirst( "hello php!" ); ?>