Jump to content

eregi_replace problem when string is a file


silentwf

Recommended Posts

I'm trying to make a highlight replacing function just like GeSHi (but I need to mod it for my needs and stuff)
My code is:
[code]
<?php
$string = include("test.php");
$r = "<a href='whoknowswhat.html'>apples</a>";
$p = "apples";
$s2 = eregi_replace($p, $r, $string);
echo $s2;
?>
[/code]
i THINK that my $s2 declaration has no problems and I think the problem resides in $string. Is my declaration incorrect, 'cause once I change $string into something like "I love to eat apples" or something, the eregi_replace function works like magic.
Ya, thanks guys. I happened to stumble over the idea maybe "file reading" would do.
Then I searched it up on php.net. It gave me that, but didnt work, and on the bottom it said "see also" and it gave me "file_get_contents"
So! Thanks for helping out ^^

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.