干净的网址 - 当我使用短划线表示空格时,我应该使用什么划线?

时间:2017-04-29 11:55:08

标签: php

我有一个页面,可以为文章

创建一个链接(干净的网址)
weburl.com/Title-article

.htaccess中的RewriteRule然后将url重写为

weburl.com/articles.php?title=Title-article

在articles.php上我在SQL安全检查之后显示标题并将短划线更改为空格。

$title_dashed = trim_strip_data($_GET['title']); //trim_strip_data() is a custom function that strips unnecessary characters like backslashes and extra white space.
$title = preg_replace("/[-]/", " ", $title_dashed);
echo "$title";

这一切都很好,但是当我在标题中有一个短划线(fe。“T恤”)时我应该做什么/使用什么?我想要显示短划线并且不要从标题中删除?

标题可以由用户生成,我不想限制标题中的破折号。

0 个答案:

没有答案