Jump to content

tannerc

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

About tannerc

  • Birthday 08/18/1986

Profile Information

  • Gender
    Male

tannerc's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. The code I posted will be placed in a file, say "magic.php". The magic.php file will then be included in several pages through-out my website. I want the magic.php file to look at the file that it is being pulled into, search it for a string, replace the string, and then show the results. So the problem is: how can I have this script read whatever file it is in, then find a replace part of that file? I know it's possible with javascript, but I wanted to see if there was any way to do it with PHP.
  2. How can I have a php file, which is included in another page, and reads the page it's pulled into, then replaces any string it finds in that page? Does that make sense? Is this possible with PHP? Is there a better way to go about reading/making the change? $file = __FILE__; $fh = fopen($file, 'r'); $content = fread($fh, filesize($file)); $content = str_replace('String to replace', 'Whatever replaces it', $content);
×
×
  • 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.