如何创建模式以验证在php中的文本输入中不会发生此数字
000000000 111111111 222222222 333333333 444444444 555555555 666666666 777777777 888888888 999999999
答案 0 :(得分:0)
就像:
protected $model;
public function __construct(\App\Member $model)
{
$this->model = $model;
}
public function getActiveMembers()
{
return $this->model->where('active', 1)->orderBy('date', 'desc')->get()
}
答案 1 :(得分:0)
以下将搜索整个字符串,如果它包含错误的输入,则它不会检测到它,否则它将(根据您的请求)。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [L]
Redirect 301 /index.php^(.*)$ /
Regex101:
https://regex101.com/r/BLIBVW/3
PHP示例:
{{1}}