Can I use strip_tags on a file and return the result in another variable? How would I do something like that?
on a text based file... sure.
$file = implode(fopen("file url")); $stripped = strip_tags($file);
$file = implode(fopen("file url"));
Hmmm...I would think it would be a bit simpler to do:
$file = file_get_contents("file url");
???
yeah, true... i always forget that.