Ref/runkit7-Phpdoc专题

runkit7_constant_add

Similar to define(), but allows defining in class definitions as well

说明

bool <span class="methodname">runkit7_constant_add ( <span class="methodparam">string $constname , mixed $value [, <span class="type">int $newVisibility ] )

参数

constname
Name of constant to declare. Either a string to indicate a global constant, or classname::constname to indicate a class constant.

value
NULL, Bool, Long, Double, String, Array, or Resource value to store in the new constant.

newVisibility
Visibility of the constant, for class constants. Public by default. One of the *`RUNKIT7ACC`** constants.

返回值

成功时返回 true, 或者在失败时返回 false

参见

  • define
  • runkit7_constant_redefine
  • runkit7_constant_remove

runkit7_constant_redefine

Redefine an already defined constant

说明

bool <span class="methodname">runkit7_constant_redefine ( <span class="methodparam">string $constname , mixed $value [, <span class="type">string $newVisibility ] )

参数

constname
Constant to redefine. Either the name of a global constant, or classname::constname indicating class constant.

value
Value to assign to the constant.

newVisibility
The new visibility of the constant, for class constants. Unchanged by default. One of the *`RUNKIT7ACC`** constants.

返回值

成功时返回 true, 或者在失败时返回 false

参见

  • runkit7_constant_add
  • runkit7_constant_remove

runkit7_constant_remove

Remove/Delete an already defined constant

说明

bool <span class="methodname">runkit7_constant_remove ( <span class="methodparam">string $constname )

参数

constname
Name of the constant to remove. Either the name of a global constant, or classname::constname indicating a class constant.

返回值

成功时返回 true, 或者在失败时返回 false

参见

  • define
  • runkit7_constant_add
  • runkit7_constant_redefine

runkit7_function_add

Add a new function, similar to <span class="function">create_function

说明

bool <span class="methodname">runkit7_function_add ( <span class="methodparam">string $funcname , string $arglist , <span class="type">string $code [, <span class="methodparam">bool $return_by_reference = null [, <span class="type">string $doc_comment = null [, <span class="type">string $return_type [, <span class="methodparam">bool $is_strict ]]]] )

bool <span class="methodname">runkit7_function_add ( <span class="methodparam">string $funcname , Closure $closure [, <span class="type">string $doc_comment = null [, <span class="type">string $return_type [, <span class="methodparam">bool $is_strict ]]] )

参数

funcname
Name of the function to be created

arglist
Comma separated argument list

code
Code making up the function

closure
A closure that defines the function.

return_by_reference
Whether the function should return by reference.

doc_comment
The doc comment of the function.

return_type
The return type of the function.

is_strict
Whether the function should behave as if it were declared in a file with strict_types=1

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 A runkit7_function_add example

<?php
runkit7_function_add('testme','$a,$b','echo "The value of a is $a\n"; echo "The value of b is $b\n";');
testme(1,2);
?>

以上例程会输出:

The value of a is 1
The value of b is 2

参见

  • create_function
  • runkit7_function_redefine
  • runkit7_function_copy
  • runkit7_function_rename
  • runkit7_function_remove
  • runkit7_method_add

runkit7_function_copy

Copy a function to a new function name

说明

bool <span class="methodname">runkit7_function_copy ( <span class="methodparam">string $funcname , string $targetname )

参数

funcname
Name of the existing function

targetname
Name of the new function to copy the definition to

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 A runkit7_function_copy example

<?php
function original() {
  echo "In a function\n";
}
runkit7_function_copy('original','duplicate');
original();
duplicate();
?>

以上例程会输出:

In a function
In a function

参见

  • runkit7_function_add
  • runkit7_function_redefine
  • runkit7_function_rename
  • runkit7_function_remove

runkit7_function_redefine

Replace a function definition with a new implementation

说明

bool <span class="methodname">runkit7_function_redefine ( <span class="methodparam">string $funcname , string $arglist , <span class="type">string $code [, <span class="methodparam">bool $return_by_reference = null [, <span class="type">string $doc_comment = null [, <span class="type">string $return_type [, <span class="methodparam">string $is_strict ]]]] )

bool <span class="methodname">runkit7_function_redefine ( <span class="methodparam">string $funcname , Closure $closure [, <span class="type">string $doc_comment = null [, <span class="type">string $return_type [, <span class="methodparam">string $is_strict ]]] )

Note: <span class="simpara">默认情况下,仅在用户空间可删除,重命名,或者修改函数。为了覆盖内部函数,必须启用 php.ini 中的 runkit.internal_override 设置。

参数

funcname
Name of function to redefine

arglist
New list of arguments to be accepted by function

code
New code implementation

closure
A closure that defines the function.

return_by_reference
Whether the function should return by reference.

doc_comment
The doc comment of the function.

return_type
The return type of the function.

is_strict
Whether the function behaves as if it was declared in a file with strict_types=1

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 A runkit7_function_redefine example

<?php
function testme() {
  echo "Original Testme Implementation\n";
}
testme();
runkit7_function_redefine('testme','','echo "New Testme Implementation\n";');
testme();
?>

以上例程会输出:

Original Testme Implementation
New Testme Implementation

参见

  • runkit7_function_add
  • runkit7_function_copy
  • runkit7_function_rename
  • runkit7_function_remove
  • runkit7_method_redefine

runkit7_function_remove

Remove a function definition

说明

bool <span class="methodname">runkit7_function_remove ( <span class="methodparam">string $funcname )

Note: <span class="simpara">默认情况下,仅在用户空间可删除,重命名,或者修改函数。为了覆盖内部函数,必须启用 php.ini 中的 runkit.internal_override 设置。

参数

funcname
Name of the function to be deleted

返回值

成功时返回 true, 或者在失败时返回 false

参见

  • runkit7_function_add
  • runkit7_function_copy
  • runkit7_function_redefine
  • runkit7_function_rename

runkit7_function_rename

Change a function's name

说明

bool <span class="methodname">runkit7_function_rename ( <span class="methodparam">string $funcname , string $newname )

Note: <span class="simpara">默认情况下,仅在用户空间可删除,重命名,或者修改函数。为了覆盖内部函数,必须启用 php.ini 中的 runkit.internal_override 设置。

参数

funcname
Current function name

newname
New function name

返回值

成功时返回 true, 或者在失败时返回 false

参见

  • runkit7_function_add
  • runkit7_function_copy
  • runkit7_function_redefine
  • runkit7_function_remove

runkit7_import

Process a PHP file importing function and class definitions, overwriting where appropriate

说明

bool <span class="methodname">runkit7_import ( <span class="methodparam">string $filename [, int $flags ] )

Similar to include. However, any code residing outside of a function or class is simply ignored. Additionally, depending on the value of flags, any functions or classes which already exist in the currently running environment may be automatically overwritten by their new definitions.

参数

filename
Filename to import function and class definitions from

flags
Bitwise OR of the RUNKIT7IMPORT* family of constants.

返回值

成功时返回 true, 或者在失败时返回 false

runkit7_method_add

Dynamically adds a new method to a given class

说明

bool <span class="methodname">runkit7_method_add ( <span class="methodparam">string $classname , string $methodname , <span class="type">string $args , <span class="methodparam">string $code [, int $flags<span class="initializer"> = RUNKIT7_ACC_PUBLIC [, <span class="methodparam">string $doc_comment<span class="initializer"> = null [, <span class="methodparam">string $return_type [, <span class="type">bool $is_strict ]]]] )

bool <span class="methodname">runkit7_method_add ( <span class="methodparam">string $classname , string $methodname , <span class="type">Closure $closure [, <span class="methodparam">int $flags<span class="initializer"> = RUNKIT7_ACC_PUBLIC [, <span class="methodparam">string $doc_comment<span class="initializer"> = null [, <span class="methodparam">string $return_type [, <span class="type">bool $is_strict ]]]] )

参数

classname
The class to which this method will be added

methodname
The name of the method to add

args
Comma-delimited list of arguments for the newly-created method

code
The code to be evaluated when methodname is called

closure
A closure that defines the method.

flags
The type of method to create, can be RUNKIT7_ACC_PUBLIC, RUNKIT7_ACC_PROTECTED or RUNKIT7_ACC_PRIVATE optionally combined via bitwise OR with RUNKIT7_ACC_STATIC

doc_comment
The doc comment of the method.

return_type
The return type of the method.

is_strict
Whether the method behaves as if it were declared in a file with strict_types=1

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 runkit7_method_add example

<?php
class Example {
    function foo() {
        echo "foo!\n";
    }
}

// create an Example object
$e = new Example();

// Add a new public method
runkit7_method_add(
    'Example',
    'add',
    '$num1, $num2',
    'return $num1 + $num2;',
    RUNKIT7_ACC_PUBLIC
);

// add 12 + 4
echo $e->add(12, 4);
?>

以上例程会输出:

16

参见

  • runkit7_method_copy
  • runkit7_method_redefine
  • runkit7_method_remove
  • runkit7_method_rename
  • runkit7_function_add

runkit7_method_copy

Copies a method from class to another

说明

bool <span class="methodname">runkit7_method_copy ( <span class="methodparam">string $dClass , string $dMethod , <span class="type">string $sClass [, <span class="methodparam">string $sMethod ] )

参数

dClass
Destination class for copied method

dMethod
Destination method name

sClass
Source class of the method to copy

sMethod
Name of the method to copy from the source class. If this parameter is omitted, the value of dMethod is assumed.

返回值

范例

示例 #1 runkit7_method_copy example

<?php
class Foo {
    function example() {
        return "foo!\n";
    }
}

class Bar {
    // initially, no methods
}

// copy the example() method from the Foo class to the Bar class, as baz()
runkit7_method_copy('Bar', 'baz', 'Foo', 'example');

// output copied function
echo Bar::baz();
?>

以上例程会输出:

foo!

参见

  • runkit7_method_add
  • runkit7_method_redefine
  • runkit7_method_remove
  • runkit7_method_rename
  • runkit7_function_copy

runkit7_method_redefine

Dynamically changes the code of the given method

说明

bool <span class="methodname">runkit7_method_redefine ( <span class="methodparam">string $classname , string $methodname , <span class="type">string $args , <span class="methodparam">string $code [, int $flags<span class="initializer"> = RUNKIT7_ACC_PUBLIC [, <span class="methodparam">string $doc_comment<span class="initializer"> = null [, <span class="methodparam">string $return_type [, <span class="type">bool $is_strict ]]]] )

bool <span class="methodname">runkit7_method_redefine ( <span class="methodparam">string $classname , string $methodname , <span class="type">Closure $closure [, <span class="methodparam">int $flags<span class="initializer"> = RUNKIT7_ACC_PUBLIC [, <span class="methodparam">string $doc_comment<span class="initializer"> = null [, <span class="methodparam">string $return_type [, <span class="type">bool $is_strict ]]]] )

参数

classname
The class in which to redefine the method

methodname
The name of the method to redefine

args
Comma-delimited list of arguments for the redefined method

code
The new code to be evaluated when methodname is called

closure
A closure that defines the method.

flags
The redefined method can be RUNKIT7_ACC_PUBLIC, RUNKIT7_ACC_PROTECTED or RUNKIT7_ACC_PRIVATE optionally combined via bitwise OR with RUNKIT7_ACC_STATIC

doc_comment
The doc comment of the method.

return_type
The return type of the method.

is_strict
Whether the method behaves as if it was declared in a file with strict_types=1.

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 runkit7_method_redefine example

<?php
class Example {
    function foo() {
        return "foo!\n";
    }
}

// create an Example object
$e = new Example();

// output Example::foo() (before redefine)
echo "Before: " . $e->foo();

// Redefine the 'foo' method
runkit7_method_redefine(
    'Example',
    'foo',
    '',
    'return "bar!\n";',
    RUNKIT7_ACC_PUBLIC
);

// output Example::foo() (after redefine)
echo "After: " . $e->foo();
?>

以上例程会输出:

Before: foo!
After: bar!

参见

  • runkit7_method_add
  • runkit7_method_copy
  • runkit7_method_remove
  • runkit7_method_rename
  • runkit7_function_redefine

runkit7_method_remove

Dynamically removes the given method

说明

bool <span class="methodname">runkit7_method_remove ( <span class="methodparam">string $classname , string $methodname )

Note: <span class="simpara">此函数不能用来操作当前正常运行(或运行链上)的方法。

参数

classname
The class in which to remove the method

methodname
The name of the method to remove

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 runkit7_method_remove example

<?php
class Example {
    function foo() {
        return "foo!\n";
    }

    function bar() {
        return "bar!\n";
    }
}

// Remove the 'foo' method
runkit7_method_remove(
    'Example',
    'foo'
);

echo implode(' ', get_class_methods('Example'));

?>

以上例程会输出:

bar

参见

  • runkit7_method_add
  • runkit7_method_copy
  • runkit7_method_redefine
  • runkit7_method_rename
  • runkit7_function_remove

runkit7_method_rename

Dynamically changes the name of the given method

说明

bool <span class="methodname">runkit7_method_rename ( <span class="methodparam">string $classname , string $methodname , <span class="type">string $newname )

Note: <span class="simpara">此函数不能用来操作当前正常运行(或运行链上)的方法。

参数

classname
The class in which to rename the method

methodname
The name of the method to rename

newname
The new name to give to the renamed method

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 runkit7_method_rename example

<?php
class Example {
    function foo() {
        return "foo!\n";
    }
}

// Rename the 'foo' method to 'bar'
runkit7_method_rename(
    'Example',
    'foo',
    'bar'
);

// output renamed function
echo Example::bar();
?>

以上例程会输出:

foo!

参见

  • runkit7_method_add
  • runkit7_method_copy
  • runkit7_method_redefine
  • runkit7_method_remove
  • runkit7_function_rename

runkit7_object_id

Return the integer object handle for given object

说明

int <span class="methodname">runkit7_object_id ( <span class="methodparam">object $obj )

This function returns a unique identifier for the object. The object id is unique for the lifetime of the object. Once the object is destroyed, its id may be reused for other objects. This behavior is similar to spl_object_hash.

参数

obj
Any object.

返回值

An integer identifier that is unique for each currently existing object and is always the same for each object.

注释

Note:

When an object is destroyed, its id may be reused for other objects.

runkit7_superglobals

Return numerically indexed array of registered superglobals

说明

array <span class="methodname">runkit7_superglobals ( <span class="methodparam">void )

参数

此函数没有参数。

返回值

Returns a numerically indexed array of the currently registered superglobals. i.e. _GET, _POST, _REQUEST, _COOKIE, _SESSION, _SERVER, _ENV, _FILES

参见

runkit7_zval_inspect

Returns information about the passed in value with data types, reference counts, etc

说明

array <span class="methodname">runkit7_zval_inspect ( <span class="methodparam">string $value )

参数

value
The value to return the representation of

目录


本站为非盈利网站,作品由网友提供上传,如无意中有侵犯您的版权,请联系删除