PHP 正则表达式匹配Slug

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 正则表达式匹配Slug相关的知识,希望对你有一定的参考价值。

/^[a-z0-9-]+$/

To use this expression follow the code below.

//Save the expression in a variable.
$correct_slug = "/^[a-z0-9-]+$/";

//some input from a user through a text field or from a server.
$user_input = $_REQUEST['sometext'];

//match the two input's and save it in a variable.
slug_match = preg_match($correct_slug, $user_input);

//Condition goes here.
if(slug_match){
  echo "Correct Input";
}
else{
   echo "Incorrect Input";
}

以上是关于PHP 正则表达式匹配Slug的主要内容,如果未能解决你的问题,请参考以下文章

Django 的 slug url 正则匹配

php中文正则匹配

php正则表达式 怎样从后面开始匹配

php 正则表达式 url匹配

PHP中正则表达式匹配字母

php 正则表达式 匹配1到32 如何匹配? 这样可不可以[1-32]