Answers for "php remove string from string if exists"

PHP
1

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));
Posted by: Guest on August-27-2020

Code answers related to "php remove string from string if exists"

Browse Popular Code Answers by Language