📜  php 检查常规字符串 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:04.230000             🧑  作者: Mango

代码示例1
//You should use a regex filter with preg_match who returns 1 or 0

// this filter works for most of cases

/* use this regex */ preg_match("/^[a-z ,.'-]+$/i", your_string);

if you want more regex filters you can make yours on 'https://regex101.com/'