1
如何查找字符串是否包含帶preg_match的「script」標記,...? 我想,如果數據爲「腳本」使用preg_match「腳本」驗證cakephp 1.3控制器中的字符串
$short_status = $this->params['form']['value'];
$regex = '/^[<script>]$/i';
if(preg_match($regex, $short_status))
{
die();
}
else
{
to process post and save to database,...
在此先感謝, 克里斯