|
-
Jun 1st, 2013, 02:47 PM
#1
Thread Starter
Hyperactive Member
Change the characters on the website
Hi Gusy,
is there any possible to change the characters on the website (online/some single site.php) that I could use some php script?
For exapmle my website shows some È letters.
I would like to convert that (replace the È for C )
Example:
if È then replace for C
-
Jun 5th, 2013, 12:13 PM
#2
Re: Change the characters on the website
You can use str_replace() for that.
PHP Code:
$string = "Èharlie is my friend. hehaheha";
$newstring = str_replace("È", "C", $string);
echo $newstring; // "Charlie is my friend. hehaheha"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|