English 中文(简体)
允许哪些字符作为短码标记, 以及我应该用什么清洁过滤器来过滤这些字符?
原标题:What characters are allowed as a shortcode tag and what sanitizing filter should I used for them?

我在一个插件上工作, 用户可以在插件中定义短码标记。 您建议允许什么, 我的想法是只允许 ascii 字符 。

另外, 您如何清理输入? 我想也许 < code> stip_tags , 然后regex 只允许 < code> a- z, 0- 9 , 或者有更好的解决方案吗? 也许Wordpress 过滤器会有效? 或者我可以用过滤的 wordpress 用于弹片吗?

最佳回答

this-is-a-good-slug Meaning you must allow also an hyphen (-)

在此之后您需要拨打以下电话:

$string = preg_replace("/[^a-z0-9_s-]/","",$string);    // strip away everything except a-z,0-9 and hyphen
$string = preg_replace("/[s-]+/"," ",$string);     // clean multiple dashes or whitespaces
$string = preg_replace("/[s_]/","-",$string);           // convert whitespaces and underscore to dash

注意; 您还需要将 UTF8 字符更改为 ascii/latin, 意思是您需要使用含有这些字符的其他语言的 Transliterate

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签