How to set first char of string as capital letter(uppercase) Get link Facebook X Pinterest Email Other Apps June 26, 2017 Use ucfirst() function to set uppercase first char of string <?php echo ucfirst( "hello php!" ); ?> Read more