I'm super rusty on the regex's and I simply can't get this to work. I believe this should be working...
I'm loading the file with file_get_contents() because it has some constants that would throw errors. I'm searching for:
define('PFX', 'asdf_');
And my preg_match is:
preg_match("/define('PFX',(.*));$/i", $the_file, $match);
No results though.
Thanks