Search Result
Collapse
2 results in 0.0050 seconds.
Keywords
Members
Tags
-
How to shuffle an array?
Can anyone show me an example of how to shuffle an array? -
Last word of string UpperCase
Hello all, I try to accomplish the following.
I have a string like: “volkswage n-golf-gti” **
And I want it to change the string into:
“Volkswage n Golf GTI” (last part completely uppercase)
But I have some difficulties understanding preg_replace.
Right now I have the following code:
Code:<?php $string = 'volkswagen-golf-gti'; $string2 = ucwords(str_replace('-', ' ', $string)); $string2