stop if in php code example
Example 1: how to set ist in php
date_default_timezone_set('Asia/Kolkata');
Example 2: php remove line if it contains string
$rows = file("problem.txt");
$blacklist = "foo|bar|lol";
foreach($rows as $key => $row) {
if(preg_match("/($blacklist)/", $row)) {
unset($rows[$key]);
}
}
file_put_contents("solved.txt", implode("\n", $rows));