1、function_exists

function_exists(string)检测函数是否存在,string表示需要检测的函数名称(注意与property_exists,method_exists,class_exists);

<?php
header('Content-type:text/html;charset=utf8');
$check = 'test';
function test($a)
{
echo 'this is ' . $a;
} var_dump(function_exists('test'));
//输出 bool(true)
var_dump(function_exists('check'));
//输出 bool(false)
?>

2、forward_static_call 和 forward_static_call_array

注意:这两个方法都必需在类的作用域里面调用

forward_static_call(callable,string...)callable表示需要调用的静态方法,一般的写法为array(className,staticName),string表示需要传入的参数,可以为多个参数

forward_static_call_array(callable,array)用法和上面一样,但是参数是一个数组

<?php
header('Content-type:text/html;charset=utf8'); Class A
{
public static function test()
{
var_dump(func_get_args());
}
} Class B
{
public static function check()
{
forward_static_call(['A', 'test'], 'first', 'second');
// forward_static_call([new A, 'test'], 'first', 'second'); 这个方法也可以执行,但是推荐上面那种写法
} public static function take()
{
forward_static_call_array(['A', 'test'], ['a', 'b', 'c']);
}
} B::check();
//输出 array(2) { [0]=> string(5) "first" [1]=> string(6) "second" }
B::take();
//输出 array(3) { [0]=> string(1) "a" [1]=> string(1) "b" [2]=> string(1) "c" }
?>

3、call_user_func 和 call_user_func_array

这两个方法表示调用方法

call_user_func(callable,string...) 表示调用已定义的方法,string表示需要传入的参数,如果调用的是类里面的方法,那么就要用call_user_func([className,funcName],string...)

call_user_func_array(callable,array) 用法同上面的一样,但是该方法传数的参数是一个数组

注意如果在类里面调用非静态方法传处call_user_func_array([$this,$method_name],$params),如果在类里面调用静态方法传入call_user_func_array(['self','method_name'],$params);

<?php
header('Content-type:text/html;charset=utf8'); Class A
{
public function test()
{
var_dump(func_get_args());
}
} Class B
{
public function check()
{
var_dump(func_get_args());
}
} function method($v = null)
{
echo 'this is method ' . $v;
} call_user_func('method', 'haha');
//输出 this is method haha
call_user_func(['A', 'test'], 'a', 'b', 'c', 'd');
//输出 array(4) { [0]=> string(1) "a" [1]=> string(1) "b" [2]=> string(1) "c" [3]=> string(1) "d" }
call_user_func_array(['B', 'check'], ['first', 'second', 'third']);
//输出 array(3) { [0]=> string(5) "first" [1]=> string(6) "second" [2]=> string(5) "third" }
?>

4、func_get_arg,func_get_args 和 func_num_args

func_get_arg(num)表示返回参数列表中的指定参数,num表示参数的偏移量

func_get_args()表示返回所有的参数

func_num_args()表示返回所有参数的个数

<?php
header('Content-type:text/html;charset=utf8'); Class A
{
public function test()
{
var_dump(func_get_args());
//输出 array(3) { [0]=> string(5) "first" [1]=> string(6) "second" [2]=> string(5) "third" }
var_dump(func_get_arg(0));
//输出 string(5) "first"
var_dump(func_num_args());
//输出 int(3)
}
} call_user_func([new A, 'test'], 'first', 'second', 'third');
?>

5、get_defined_functions

get_defined_functions()表示返回所有的函数,包括系统内部的函数,用户自定义的函数,系统内部的函数用$arr['internal']来访问,用户的函数用$arr['user']来访问

<?php
header('Content-type:text/html;charset=utf8'); function test()
{
echo 'this is test';
} print_r(get_defined_functions());
//输出如下数组
//Array
//(
// [internal] => Array
// (
// [0] => zend_version
// [1] => func_num_args
// [2] => func_get_arg
// [3] => func_get_args
// [4] => strlen
// ...
// [750] => bcscale
// [751] => bccomp
// )
//
// [user] => Array
//(
// [0] => test
//)
//
//)
?>

5、register_shutdown_function

register_shutdown_function(callback,params)表示定义一个在页面加载完之后触发(即也是在exit前触发的函数),callback表示回调函数,params表示需要传入的函数,也可以调用类里面的方法,方法同call_user_func()一样

<?php
header('Content-type:text/html;charset=utf8');
register_shutdown_function(function () {
var_dump(func_get_args());
}, 'y', 'f'); function test()
{
echo 'this is first'."<br>";
exit;
echo 'this is second';
} test();
//输出如下内容
//this is first
//array(2) { [0]=> string(1) "y" [1]=> string(1) "f" }
?> <?php
header('Content-type:text/html;charset=utf8');
register_shutdown_function([new A, 'test'], 'AA', 'BB', 'CC'); Class A
{
public function test()
{
var_dump(func_get_args());
}
} echo 'ok <br>';
//输出如下内容
//ok
//array(3) { [0]=> string(2) "AA" [1]=> string(2) "BB" [2]=> string(2) "CC" }
?>

PHP 方法,类与对象的相关函数学习的更多相关文章

  1. Java类与对象的基础学习

    1. 请输入并运行以下代码,得到什么结果? public class Test{ public static void main(String args[]){ Foo obj1=new Foo(); ...

  2. [Java]Java入门笔记(三):类、对象和方法

    七.类.对象和方法 类和对象的关系 类定义了对象的本质: 类(class)是对象(object)的模板,而对象(object)是类的一个实例(instance). 使多个对象的指向相同: Studen ...

  3. 类、对象(java基础知识六)

    1.Java约定俗成 java约定俗成 1,类名接口名 一个单词首字母大写,多个单词每个单词首字母都大写 2,方法名和变量名 一个单词全部小写,多个单词从第二个单词首字母大写 建议:如果能用英语尽量用 ...

  4. PHP7语法知识(三):时间与日期、表单、类与对象、正则表达式、错误异常处理、图像处理

    时间与日期 一.设置时区 1.在配置文件中设置: 2.通过data_default_timezone_set函数在文件中设置: 二.获取当前时间 三.常用时间处理方法 1.格式化时间显示: 2.计算时 ...

  5. JavaScript 浅析数组对象与类数组对象

    数组(Array对象) 数组的操作 创建数组方法 添加与修改数组元素 删除数组元素 使用数组元素 遍历数组元素 多维数组 数组相关的函数 concat() join() pop() push() sh ...

  6. 新手C#类、对象、字段、方法的学习2018.08.05

    类:具有相似属性和方法的对象的集合,如“人”是个类. 对象(实例):对象是具体的看得见摸得着的,如“张三”是“人”这个类的对象.(new Person()开辟了堆空间中,=开辟了栈空间,变量P存放在该 ...

  7. iOS学习10之OC类和对象

    本次是OC的第一节课,主要是学习和理解类与对象 1.面向对象 1> OOP(Object Oriented Programming)面向对象编程. 面向对象以事物为中心,完成某件事情都需要哪些事 ...

  8. Javascript学习6 - 类、对象、继承

    原文:Javascript学习6 - 类.对象.继承 Javasciprt并不像C++一样支持真正的类,也不是用class关键字来定义类.Javascript定义类也是使用function关键字来完成 ...

  9. 学习笔记——Java类和对象

    今天学习了Java的类和对象的相关知识,由于Java面向对象的编程的思想和C++几乎一样,所以需要更多的关注Java的一些不同之处. 1.类 1.1 在类这一块,除了基本的成员变量,成员方法,构造函数 ...

随机推荐

  1. JAVA进阶3

    间歇性混吃等死,持续性踌躇满志系列-------------第3天 1.局部内部类 局部内部类是指在类的方法中定义的内部类,它的作用范围也是在这个方法体内. class SellOutClass{ p ...

  2. __call__

    object.__call__(self[, args...]) Called when the instance is “called” as a function; if this method ...

  3. ASP.NET - 学习总目录

    ASP.NET - 处理页面 ASP.NET - ADO.NET框架 ASP.NET - 创建功能菜单 ASP.NET MVC - 入门 ASP.NET MVC - 模型验证 ASP.NET MVC ...

  4. 最全免费CDN公共库——网站提速

    开源静态文件 CDN 我们的目标是提供这样一个仓库,让它尽可能全面收录优秀的开源库,并免费为之提供 CDN 加速服务,使之有更好的访问速度和稳定的环境.同时,我们也提供开源库源接入的入口,让所有人都可 ...

  5. Spring boot中普通工具类不能使用@Value注入yml文件中的自定义参数的问题

    在写一个工具类的时候,因为要用到yml中的自定义参数,使用@Value发现值不能正常注入,都显示为null: yml文件中的自定义格式 调用工具类的时候不能new的方式 要使用@Autowired的方 ...

  6. SpringSecurity认证处理流程

  7. 【转】python操作excel表格(xlrd/xlwt)

    [转]python操作excel表格(xlrd/xlwt) 最近遇到一个情景,就是定期生成并发送服务器使用情况报表,按照不同维度统计,涉及python对excel的操作,上网搜罗了一番,大多大同小异, ...

  8. Pytorch tutorial 之Datar Loading and Processing (2)

    上文介绍了数据读取.数据转换.批量处理等等.了解到在PyTorch中,数据加载主要有两种方式: 1. 自定义的数据集对象.数据集对象被抽象为Dataset类,实现自定义的数据集需要继承Dataset. ...

  9. Python运维开发基础09-函数基础【转】

    上节作业回顾 #!/usr/bin/env python3 # -*- coding:utf-8 -*- # author:Mr.chen # 实现简单的shell命令sed的替换功能 import ...

  10. VC获取操作系统位数

    方法1,msdn 有相应的例子,代码贴出来给你看看 MSDN有相应Example! #include <windows.h> typedef BOOL (WINAPI *LPFN_ISWO ...