-3

我正在卷曲一个页面,并想检查是否在页面上的 javascript 标记之间的任何位置找到此字符串(使用 php):

';()// 

但可能还有其他代码,例如:

<script>
..stuff
';()//
.. more stuff
</script>

任何人都可以发布一个例子吗?

4

1 回答 1

1

This kinda do the job:

echo preg_match("#script.*';\(\)\/\/.*\/script#im", str_replace("\n", "", $html), $matches);

It returns 1 if a match was found, 0 if none.

于 2013-08-08T20:34:22.383 回答