1 2 3 4 5 6 7
<?php $values = array("<p>abcd</p></script>", "<p><html>", "<html>", "</script><html>"); foreach($values as $value){ if((!strstr($value, '<p>')) and (!strstr($value, '</script>'))){ echo $value."\n"; } }
1
<html>