WordPress函数文档delete_transient()

删除某个保留在数据库的临时值 描述 Delete a transient. If the specified …

删除某个保留在数据库的临时值

描述

Delete a transient. If the specified transient does not exist then no action will be taken.

用法

<?php delete_transient$transient ); ?>

参数

$transient

(string) (必填) Transient name. Expected to not be SQL-escaped.

默认值: None

返回值

(boolean) 

True if successful, false otherwise.

示例

Clearing our transient via the edit_term hook

历史

添加于 版本: 2.8

源文件

delete_transient() 函数的代码位于 wp-includes/option.php.

相关

Transients API:
set_transient(),
get_transient(),
delete_transient(),
set_site_transient(),
get_site_transient(),
delete_site_transient()

  • 原文:http://codex.wordpress.org/Function_Reference/delete_transient
类别:WordPress函数文档

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT