Posts

Showing posts with the label ucfirst

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!" ); ?>