Search
 
SCRIPT & CODE EXAMPLE
 

PHP

capitlise php

<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
Comment

PREVIOUS NEXT
Code Example
Php :: wordpress get site url 
Php :: add softDelete in modeldata laravel 
Php :: get parameter in php 
Php :: laravel with trashed 
Php :: Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 119541600 bytes) in C:xampphtdocsackup-vice.php on line 67 
Php :: check if delete query was successful laravel 
Php :: php get intersection of two arrays 
Php :: yii2 get cookie 
Php :: websocket 2006 MySQL server has gone away 
Php :: laravel optimize 
Php :: laravel exists validation query two tables 
Php :: route group controller laravel 
Php :: email php using html 
Php :: contact form 7 select disabled option 
Php :: php tags 
Php :: update query wordpress 
Php :: override belongto parent appmodel cakephp 
Php :: laravel query builder join 
Php :: laravel eloquent get 3 months 
Php :: php.ini location mac 
Php :: image exists in laravel 
Php :: return response array laravel 
Php :: mac install multiple php versions 
Php :: artisan cache clear 
Php :: is php the fucking worst 
Php :: php validate only numbers 
Php :: php chunk array 
Php :: tolower php 
Php :: remove cookies php 
Php :: php elseif 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =