Jump to content

Recommended Posts

I have a txt file containing str_replace's, such as:

 

$message = str_replace(":icon_wtf:", "<img src=\"../images/smilies/icon_wtf.gif\">", $message);

$message = str_replace(":icon_yay:", "<img src=\"../images/icon_yay.gif\">", $message);

$message = str_replace("blank", "<img src=\"../images/icon_wtf.gif\">", $message);

$message = str_replace("", "<img src=\"../images/icon_.gif\">", $message);

 

But I want to; with php rearrange all the str_replaces.

 

 

So they will turn from:

 

$message = str_replace(":icon_wtf:", "<img src=\"../images/smilies/icon_wtf.gif\">", $message);

 

Too:

 

$message = str_replace("<img src=\"../images/smilies/icon_wtf.gif\">", ":icon_wtf:" $message);

 

:-\ All help is greatly appreciated, im assuming i'd need to use preg_replace_callback? and fwrite, just need help to proceed..

 

My attempt:

 

<?php
$file = file_get_contents("replaces.txt");

$file = preg_replace('#str_replace\(".*", ".*"#', 'str_replace("$2", "$1"', $file);

$fp = fopen('replaces.txt', 'w');
fwrite($fp, $file);
fclose($fp);

?>

Link to comment
https://forums.phpfreaks.com/topic/188588-replacing-str_replaces/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.