我有这个代码:
if(!strstr($value, '<p>')){...}
这会将数据库中的数据输出到 Excel 文件,不包括包含<p>
.
我还想排除包含</script>
我试过这两个代码片段没有成功:
if((!strstr($value, '<p>')) and (!strstr($value, '</script>')))
和:
if(!strstr($value, '<p>', '</script>'))
基本上我的问题是如何从我的excel文件中排除<p>
和排除?</scrpit>