首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在搜索查询中,花括号之间的数字是多少?

在搜索查询中,花括号之间的数字是多少?
EN

WordPress Development用户
提问于 2018-01-16 14:18:05
回答 1查看 628关注 0票数 7

我正在使用wordpress中的搜索查询,并且我注意到在最初的查询中,术语在花括号和数字之间.就像这样:

代码语言:javascript
复制
wp_posts.post_title LIKE '{30d0e4b86a2a793010a75740f60810aff6b57f6d18edc10be7ca6dc158e40c06}11{30d0e4b86a2a793010a75740f60810aff6b57f6d18edc10be7ca6dc158e40c06}'

这是什么?

谢谢

EN

回答 1

WordPress Development用户

回答已采纳

发布于 2018-01-16 15:30:25

这些是%符号的占位符。如果在要与自己比较的值中发送%,则在查看'%test%'时会注意到将$query->request转换为wp_posts.post_title LIKE '{30d0e4b86a2a793010a75740f60810aff6b57f6d18edc10be7ca6dc158e40c06}\{30d0e4b86a2a793010a75740f60810aff6b57f6d18edc10be7ca6dc158e40c06}11{30d0e4b86a2a793010a75740f60810aff6b57f6d18edc10be7ca6dc158e40c06}\{30d0e4b86a2a793010a75740f60810aff6b57f6d18edc10be7ca6dc158e40c06}'

数据库端的查询将有%。我还没有研究过为什么和在哪里做的,但最近我注意到了这一点。我相信几个版本之前不是这样的,所以这可能是最近的一次更新。

编辑:我已经调查过更多了。它是在4.8.3中添加的,来自wpdb:

代码语言:javascript
复制
/**
 * Adds a placeholder escape string, to escape anything that resembles a printf() placeholder.
 *
 * @since 4.8.3
 *
 * @param string $query The query to escape.
 * @return string The query with the placeholder escape string inserted where necessary.
 */
public function add_placeholder_escape( $query ) {
    /*
     * To prevent returning anything that even vaguely resembles a placeholder,
     * we clobber every % we can find.
     */
    return str_replace( '%', $this->placeholder_escape(), $query );
}

/**
 * Removes the placeholder escape strings from a query.
 *
 * @since 4.8.3
 *
 * @param string $query The query from which the placeholder will be removed.
 * @return string The query with the placeholder removed.
 */
public function remove_placeholder_escape( $query ) {
    return str_replace( $this->placeholder_escape(), '%', $query );
}

相关的trac票据是#41925,引入它是为了确保SQL不包含任何可能被sprintf误解为占位符的内容,同时带来“返回”编号占位符(这些占位符从未得到官方支持,但有效)。因安全问题而被撤职)。

票数 6
EN
页面原文内容由WordPress Development提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://wordpress.stackexchange.com/questions/291210

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档