I am parsing text from an xml file that always reads "There are no new codes." At least once a day this text will change to something different. My goal here is to return the new text when it changes, and do nothing when it reads "There are no new codes.". My problem is that it always returns "There are no new codes."
//get source of remote site
$source = file_get_contents('http://someurl.com');
//match strings
preg_match('#<code>(.*?)</code>#', $source, $match);
//if match is equal to "There are no new codes." do nothing else return new match
if ( $match[0] == "There are no new codes." ) {
/* Do Nothing */;
} else {
echo $match_one[0];
}