Not sure what this is called, but is there a way I can pull data from a file, echo it, but ignore data within a certain set of characters?
<?php
echo file_get_contents('test.txt');
?>
Would it be possible to ignore the data in between the asterisks, and the asterisks themselves when I echo out the final function?