无需言 做自己 业 ,精于勤 荒于嬉.

函数处理 函数 register_shutdown_function 注册一个会在php中止时执行的函数

发表日期:2021-07-01 08:57:16 | 来源: | 分类:函数处理 函数

      示例1
<?php 
function shutdown(){
    // This is our shutdown function, in     // here we can do any last operations    // before the script is complete.    echo 'Script executed with success', PHP_EOL;
}
register_shutdown_function('shutdown');
?>

阅读全文 »

函数处理 函数 register_tick_function Register a function for execution on each tick

发表日期:2021-07-01 08:57:16 | 来源: | 分类:函数处理 函数

      示例1
<?php 
declare(ticks=1);
// using a function as the callbackregister_tick_function('my_function', true);
// using an object->method$object = new my_class();
register_tick_function(array(&$object, 'my_method'), true);
?>

阅读全文 »

函数处理 函数 create_function Create an anonymous (lambda-style) function

发表日期:2021-07-01 08:57:16 | 来源: | 分类:函数处理 函数

      示例1
<?php 
$newfunc = create_function('$a,$b', 'return "ln($a) + ln($b) = " . log($a * $b);
');
echo "New anonymous function: $newfunc\n";
echo $newfunc(2, M_E) . "\n";
// outputs// New anonymous function: lambda_1// ln(2) + ln(2.718281828459) = 1.6931471805599?>

      示例2
<?php 
function process($var1, $var2, $farr){
    foreach ($farr as $f) {
        echo $f($var1, $var2) . "\n";
    }
}
// create a bunch of math functions$f1 = 'if ($a >=0) {
return "b*a^2 = ".$b*sqrt($a);
}
 else {
return false;
}
';
$f2 = "return \"min(b^2+a, a^2,b) = \".min(\$a*\$a+\$b,\$b*\$b+\$a);
";
$f3 = 'if ($a > 0 && $b != 0) {
return "ln(a)/b = ".log($a)/$b;
 }
 else {
 return false;
 }
';
$farr = array(    create_function('$x,$y', 'return "some trig: ".(sin($x) + $x*cos($y));
'),    create_function('$x,$y', 'return "a hypotenuse: ".sqrt($x*$x + $y*$y);
'),    create_function('$a,$b', $f1),    create_function('$a,$b', $f2),    create_function('$a,$b', $f3)    );
echo "\nUsing the first array of anonymous functions\n";
echo "parameters: 2.3445, M_PI\n";
process(2.3445, M_PI, $farr);
// now make a bunch of string processing functions$garr = array(    create_function('$b,$a', 'if (strncmp($a, $b, 3) == 0) return "** \"$a\" '.    'and \"$b\"\n** Look the same to me! (looking at the first 3 chars)";
'),    create_function('$a,$b', ';
 return "CRCs: " . crc32($a) . ", ".crc32($b);
'),    create_function('$a,$b', ';
 return "similar(a,b) = " . similar_text($a, $b, &$p) . "($p%)";
')    );
echo "\nUsing the second array of anonymous functions\n";
process("Twas brilling and the slithy toves", "Twas the night", $garr);
?>

      示例3
<?php 
$av = array("the ", "a ", "that ", "this ");
array_walk($av, create_function('&$v,$k', '$v = $v . "mango";
'));
print_r($av);
?>

      示例4
<?php 
$sv = array("small", "larger", "a big string", "it is a string thing");
print_r($sv);
?>

      示例5
<?php 
usort($sv, create_function('$a,$b','return strlen($b) - strlen($a);
'));
print_r($sv);
?>

阅读全文 »

函数处理 函数 function_exists 如果给定的函数已经被定义就返回 true

发表日期:2021-07-01 08:57:16 | 来源: | 分类:函数处理 函数

      示例1
<?php 
if (function_exists('imap_open')) {
    echo "IMAP functions are available.<br />\n";
}
 else {
    echo "IMAP functions are not available.<br />\n";
}
?>

阅读全文 »

函数处理 函数 unregister_tick_function De-register a function for execution on each tick

发表日期:2021-07-01 08:57:16 | 来源: | 分类:函数处理 函数

unregister_tick_function

(PHP 4 >= 4.0.3, PHP 5, PHP 7, PHP 8)

unregister_tick_functionDe-register a function for execution on each tick

说明

unregister_tick_function(string $function_name): void

De-registers the function named by function_name so it is no longer executed when a tick is called.

参数

function_name

The function name, as a string.

返回值

没有返回值。

参见

阅读全文 »

函数处理 函数 forward_static_call Call a static method

发表日期:2021-07-01 08:57:15 | 来源: | 分类:函数处理 函数

      示例1
<?php 
class A{
    const NAME = 'A';
    public static function test() {
        $args = func_get_args();
        echo static::NAME, " ".join(',', $args)." \n";
    }
}
class B extends A{
    const NAME = 'B';
    public static function test() {
        echo self::NAME, "\n";
        forward_static_call(array('A', 'test'), 'more', 'args');
        forward_static_call( 'test', 'other', 'args');
    }
}
B::test('foo');
function test() {
        $args = func_get_args();
        echo "C ".join(',', $args)." \n";
    }
?>

阅读全文 »

函数处理 函数 forward_static_call_array Call a static method and pass the arguments as array

发表日期:2021-07-01 08:57:15 | 来源: | 分类:函数处理 函数

      示例1
<?php 
class A{
    const NAME = 'A';
    public static function test() {
        $args = func_get_args();
        echo static::NAME, " ".join(',', $args)." \n";
    }
}
class B extends A{
    const NAME = 'B';
    public static function test() {
        echo self::NAME, "\n";
        forward_static_call_array(array('A', 'test'), array('more', 'args'));
        forward_static_call_array( 'test', array('other', 'args'));
    }
}
B::test('foo');
function test() {
        $args = func_get_args();
        echo "C ".join(',', $args)." \n";
    }
?>

阅读全文 »

函数处理 函数 call_user_func_array 调用回调函数,并把一个数组参数作为回调函数的参数

发表日期:2021-07-01 08:57:15 | 来源: | 分类:函数处理 函数

      示例1
<?php 
function foobar($arg, $arg2) {
    echo __FUNCTION__, " got $arg and $arg2\n";
}
class foo {
    function bar($arg, $arg2) {
        echo __METHOD__, " got $arg and $arg2\n";
    }
}
// Call the foobar() function with 2 argumentscall_user_func_array("foobar", array("one", "two"));
// Call the $foo->bar() method with 2 arguments$foo = new foo;
call_user_func_array(array($foo, "bar"), array("three", "four"));
?>

      示例2
<?php 
namespace Foobar;
class Foo {
    static public function test($name) {
        print "Hello {
$name}
!\n";
    }
}
// As of PHP 5.3.0call_user_func_array(__NAMESPACE__ .'\Foo::test', array('Hannes'));
// As of PHP 5.3.0call_user_func_array(array(__NAMESPACE__ .'\Foo', 'test'), array('Philip'));
?>

      示例3
<?php 
$func = function($arg1, $arg2) {
    return $arg1 * $arg2;
}
;
var_dump(call_user_func_array($func, array(2, 4)));
 /* As of PHP 5.3.0 */
?>

      示例4
<?php 
function mega(&$a){
    $a = 55;
    echo "function mega \$a=$a\n";
}
$bar = 77;
call_user_func_array('mega',array(&$bar));
echo "global \$bar=$bar\n";
?>

阅读全文 »

函数处理 函数 func_get_arg 返回参数列表的某一项

发表日期:2021-07-01 08:57:15 | 来源: | 分类:函数处理 函数

      示例1
<?php 
function foo(){
     $numargs = func_num_args();
     echo "Number of arguments: $numargs<br />\n";
     if ($numargs >= 2) {
         echo "Second argument is: " . func_get_arg(1) . "<br />\n";
     }
}
foo (1, 2, 3);
?>

      示例2
test.php<?php 
function foo() {
    include './fga.inc';
}
foo('First arg', 'Second arg');
?>fga.inc<?php$arg = func_get_arg(1);
var_export($arg);
?>

      示例3
<?php 
function byVal($arg) {
    echo 'As passed     : ', var_export(func_get_arg(0)), PHP_EOL;
    $arg = 'baz';
    echo 'After change  : ', var_export(func_get_arg(0)), PHP_EOL;
}
function byRef(&$arg) {
    echo 'As passed     : ', var_export(func_get_arg(0)), PHP_EOL;
    $arg = 'baz';
    echo 'After change  : ', var_export(func_get_arg(0)), PHP_EOL;
}
$arg = 'bar';
byVal($arg);
byRef($arg);
?>

阅读全文 »

类/对象 函数 trait_exists 检查指定的 trait 是否存在

发表日期:2021-07-01 08:57:12 | 来源: | 分类:类/对象 函数

trait_exists

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

trait_exists检查指定的 trait 是否存在

说明

trait_exists(string $traitname, bool $autoload = ?): bool

参数

traitname

待检查的 trait 的名称

autoload

如果尚未加载,是否使用自动加载(autoload)。

返回值

如果 trait 存在返回 true,不存在则返回 false。发生错误的时候返回 null

阅读全文 »

类/对象 函数 method_exists 检查类的方法是否存在

发表日期:2021-07-01 08:57:12 | 来源: | 分类:类/对象 函数

      示例1
<?php 
$directory = new Directory('.');
var_dump(method_exists($directory,'read'));
?>

      示例2
<?php 
var_dump(method_exists('Directory','read'));
?>

阅读全文 »

类/对象 函数 get_parent_class 返回对象或类的父类名

发表日期:2021-07-01 08:57:12 | 来源: | 分类:类/对象 函数

      示例1
<?php 
class dad {
    function dad()    {
    // implements some logic    }
}
class child extends dad {
    function child()    {
        echo "I'm " , get_parent_class($this) , "'s son\n";
    }
}
class child2 extends dad {
    function child2()    {
        echo "I'm " , get_parent_class('child2') , "'s son too\n";
    }
}
$foo = new child();
$bar = new child2();
?>

      示例2
<?php 
class dad {
    function dad()    {
    // implements some logic    }
}
class child extends dad {
    function child()    {
        echo "I'm " , get_parent_class($this) , "'s son\n";
    }
}
class child2 extends dad {
    function child2()    {
        echo "I'm " , get_parent_class('child2') , "'s son too\n";
    }
}
$foo = new child();
$bar = new child2();
?>

阅读全文 »

类/对象 函数 property_exists 检查对象或类是否具有该属性

发表日期:2021-07-01 08:57:12 | 来源: | 分类:类/对象 函数

      示例1
<?php 
class myClass {
    public $mine;
    private $xpto;
    static protected $test;
    static function test() {
        var_dump(property_exists('myClass', 'xpto'));
 //true    }
}
var_dump(property_exists('myClass', 'mine'));
   //truevar_dump(property_exists(new myClass, 'mine'));
 //truevar_dump(property_exists('myClass', 'xpto'));
   //true, as of PHP 5.3.0var_dump(property_exists('myClass', 'bar'));
    //falsevar_dump(property_exists('myClass', 'test'));
   //true, as of PHP 5.3.0myClass::test();
?>

阅读全文 »

类/对象 函数 __autoload 尝试加载未定义的类

发表日期:2021-07-01 08:57:11 | 来源: | 分类:类/对象 函数

__autoload

(PHP 5, PHP 7)

__autoload尝试加载未定义的类

警告

本函数已自 PHP 7.2.0 起被废弃,并自 PHP 8.0.0 起被移除。 强烈建议不要依赖本函数。

说明

__autoload(string $class): void

你可以通过定义这个函数来启用类的自动加载

参数

class

待加载的类名。

返回值

没有返回值。

参见

阅读全文 »

类/对象 函数 class_alias 为一个类创建别名

发表日期:2021-07-01 08:57:11 | 来源: | 分类:类/对象 函数

      示例1
<?php 
class foo {
 }
class_alias('foo', 'bar');
$a = new foo;
$b = new bar;
// the objects are the samevar_dump($a == $b, $a === $b);
var_dump($a instanceof $b);
// the classes are the samevar_dump($a instanceof foo);
var_dump($a instanceof bar);
var_dump($b instanceof foo);
var_dump($b instanceof bar);
?>

阅读全文 »

类/对象 函数 get_called_class 后期静态绑定("Late Static Binding")类的名称

发表日期:2021-07-01 08:57:11 | 来源: | 分类:类/对象 函数

      示例1
<?php 
class foo {
    static public function test() {
        var_dump(get_called_class());
    }
}
class bar extends foo {
}
foo::test();
bar::test();
?>

阅读全文 »

类/对象 函数 get_class_methods 返回由类的方法名组成的数组

发表日期:2021-07-01 08:57:11 | 来源: | 分类:类/对象 函数

      示例1
<?php 
class myclass {
    // constructor    function myclass()    {
        return(true);
    }
    // method 1    function myfunc1()    {
        return(true);
    }
    // method 2    function myfunc2()    {
        return(true);
    }
}
$class_methods = get_class_methods('myclass');
// or$class_methods = get_class_methods(new myclass());
foreach ($class_methods as $method_name) {
    echo "$method_name\n";
}
?>

阅读全文 »

类/对象 函数 class_exists 检查类是否已定义

发表日期:2021-07-01 08:57:11 | 来源: | 分类:类/对象 函数

      示例1
<?php 
// 使用前检查类是否存在if (class_exists('MyClass')) {
    $myclass = new MyClass();
}
?>

      示例2
<?php 
function __autoload($class){
    include($class . '.php');
    // Check to see whether the include declared the class    if (!class_exists($class, false)) {
        trigger_error("Unable to load class: $class", E_USER_WARNING);
    }
}
if (class_exists('MyClass')) {
    $myclass = new MyClass();
}
?>

阅读全文 »

类/对象 函数 get_declared_classes 返回由已定义类的名字所组成的数组

发表日期:2021-07-01 08:57:11 | 来源: | 分类:类/对象 函数

      示例1
<?php 
print_r(get_declared_classes());
?>

阅读全文 »

类/对象 函数 get_declared_interfaces 返回一个数组包含所有已声明的接口

发表日期:2021-07-01 08:57:11 | 来源: | 分类:类/对象 函数

      示例1
<?php 
print_r(get_declared_interfaces());
?>

阅读全文 »

全部博文(1580)
集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。