Replace Parts Of A PHP String Replacing Words Characters

Mobile
feeds
Welcome Login | Register

Replace Parts Of A PHP String Replacing Words Characters
  Forums Index
      » PHP Forums
        » » Replace parts of a PHP string replacing words characters



Replace Parts Of A PHP String Replacing Words Characters
Post Description:
Post Tags: replace, parts, of, a, php, string, replacing, words, characters, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 1380 Times Since Wed Jun 20, 2007 8:47 am Posted By hostman with 1 replies
Next Post »» Find and start from first occurrence of a string PHP
Replace Parts Of A PHP String Replacing Words Characters
if you ever wanted to know how to change a character in a string, its easy with php.

lets say i have a string, the this is the value:

$string = "Wallpaperama has many screensavers you can download for free in our screensavers page"

ok, lets say i want to change all the words "screensavers" to "wallpapers" and this is how i would do it:

<?
$string = "Wallpaperama has many screensavers you can download for free in our screensavers page"
echo str_replace(('screensavers','wallpapers',$string);
?>


with this code, i am telling php that i want to replace any part of the string that contains "screensavers" and replace it with "wallpapaers" and the ouput will be like this

Wallpaperama has many wallpapers you can download for free in our wallpapers page

this is the format to use this function:

str_replace ('find this', 'replace it with this', 'in this')





Leave Your Comments






Share
URL:
You can use this HTML code to put it on your website to show your friends this wallpaper. Use this code on your profile like myspace, friendster, Facebook or others. Just Copy and Paste it in your HTML on your websites



Fourms BBCODE:
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums





Comments and replies About Replace Parts Of A PHP String Replacing Words Characters




:: 1 :: Reply #45134 Reply By AYUSHDEEPSINGH On Wed Mar 12, 2008 3:40 am
thanks peoples i am very happy