1. PHP对变量的处理函数的分类整理如下: 转换变量值类型: boolval — Get the boolean value of a variable doubleval — floatval 的别名 floatval — 获取变量的浮点值 intval — 获取变量的整数值 strval — 获取变量的字符串值 判断类型: is_a ...

    阅读全文
  2. call_user_func_array — 调用用户定义的函数,参数使用数组传递。Call a callback with an array of parameters call_user_func — 调用用户定义的函数,传递一个参数,且参数为非引用。Call the callback given by the first parameter create_function — 创建一个匿名函数。 Create ...

    阅读全文
  3. JAVA8的java.util.function包 https://www.cnblogs.com/linzhanfly/p/9686941.html java.util.function.Function的用法 https://www.jianshu.com/p/3c27dfd647f1 https://blog.csdn.net/huo065000/article/details/78964382 java8双冒号用法: https://www.jians ...

    阅读全文