当前位置 : 主页 > 网络编程 > PHP >

PHP版 jQuery插件传参方式...

来源:互联网 收集:自由互联 发布时间:2021-07-03
?php function test($options=array()) { $defaults = array( 'name' = 'xxoo', 'sex' = 'xoxo' ); $options = array_merge($defaults, $options); print_r($options);} test(array('name'='nidaye')); ?
 
<?php
  
function test($options=array()) {
    $defaults = array(
        'name' => 'xxoo',
        'sex' => 'xoxo'    
    );
    $options = array_merge($defaults, $options);
  
    print_r($options);
}
  
test(array('name'=>'nidaye'));
  
?>

网友评论