码迷,mamicode.com
首页 > Web开发 > 详细

PHP杂记190428

时间:2019-04-28 09:52:45      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:案例   fun   数据   关于   www   类方法   this   null   回调函数   

1. 关于在函数中指定回调函数为类方法
例如数组函数中的 array_map() :为数组中的每个元素进行回调处理

function call($n){
                return $n*$n;
    }

    $arr = [1,2,3,4];
    array_map(array(this,"call"), $arr);

    TIP:    this 也可以替换成__CLASS__

2.关于数组函数array_filter()不指定回调函数

array_filter() 如果不指定回调函数的话则会过滤掉为值false的数据
PHP手册中有相应案例:

<?php
$entry = array(
             0 => ‘foo‘,
             1 => false,
             2 => -1,
             3 => null,
             4 => ‘‘
);
print_r(array_filter($entry));
?> 
/*输出结果*/
Array
(
    [0] => foo
    [2] => -1
)

PHP杂记190428

标签:案例   fun   数据   关于   www   类方法   this   null   回调函数   

原文地址:https://blog.51cto.com/11016194/2385815

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!