PHP functions strings please help?

c2_91

New member
I need to create this string:

$string " mary jones lives in santa cruz, california at 22 ocean drive."

i then need to find the number of characters in the string and capitalize all the letter in the string.

how do i do this?
are there built in functions to do this
 
Find length of the string with the strlen() function.

Capitalize letters with the strtoupper() function.
 
Back
Top