wp_parse_args( $args, $defaults );
type=post&posts_per_page=5&cat=1
array( 'type' => 'post', 'posts_per_page' => 5, 'cat' => '1' )
function explain_parse_args( $args = array() ){
//$args 的默认值
$defaults = array(
'before' => '<div class="box">',
'after' => '</div>',
'echo' => true,
'text' => 'wp_parse_args() 函数演示'
);
//绑定默认值
$r = wp_parse_args( $args, $defaults );
$output = $r['before'] . $r['text'] . $r['after'];
if( !$r['echo'] ) return $output;
echo $output;
}
//没有参数
explain_parse_args();//打印:<div class="box">wp_parse_args() 函数演示</div>
//字符串参数
$output = explain_parse_args( 'text=字符串参数&before=<div class="box-2">&echo=0' );
echo $output;//打印:<div class="box-2">字符串参数</div>
//数组参数
explain_parse_args( array( 'text' => '数组参数', 'before' => '<div class="box-3">' ) );//打印:<div class="box-3">数组参数</div>
还有另一种不使用第二个 $defaults 参数的用法,就是帮你把一个查询字符串、对象或者数组的变量直接转换成通用的数组,避免判断类型。
//字符串
$array = wp_parse_args( 'text=测试另一种用法&type=字符串' );
var_dump( $array );
/*
array(2) {
["text"]=>
string(21) "测试另一种用法"
["type"]=>
string(9) "字符串"
}
*/
//对象(object)
class args_obj{
public $text = '测试另一种用法';
public $type = '对象(object)';
function func(){
//转换成数组的时候对象里边的函数会被忽略
}
}
$obj = new args_obj;
var_dump( $obj );
/*
object(args_obj)#2175 (2) {
["text"]=>
string(21) "测试另一种用法"
["type"]=>
string(18) "对象(object)"
}
*/
/**
* Merge user defined arguments into defaults array.
*
* This function is used throughout WordPress to allow for both string or array
* to be merged into another array.
*
* @since 2.2.0
*
*第一个参数可以是 字符串、数组或对象(obj)
* @param string|array $args Value to merge with $defaults
*第二个参数为默认的预设值数组,必须是数组
* @param array $defaults Array that serves as the defaults.
*返回值将是一个数组
* @return array Merged user defined values with defaults.
*/
function wp_parse_args( $args, $defaults = '' ) {
if ( is_object( $args ) )
//将接收的对象(obj)转换为数组
$r = get_object_vars( $args );
elseif ( is_array( $args ) )
//如果是数组则不转换
$r =& $args;
else
//将接收的字符串转换为数组
wp_parse_str( $args, $r );
if ( is_array( $defaults ) )
return array_merge( $defaults, $r );
return $r;
}
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有