Feed Rss



Posts Tagged ‘functions

Feb 27 2008

Make all letters caps

category: PHP,Snippets author:

A nice little way of making all letters into capitals is to use PHP's inbuilt function strtoupper, like so. echo strtoupper('Hi, i am going to be all in caps in just one mo'); Will print ... HI, I AM GOING TO BE ALL IN CAPS IN JUST ONE MO

tag: , ,