文字

预定义类

本节列出标准的预定义类。各种扩展库定义了其它类,其说明在各自的参考文档中。

标准类

这些类由一些内建在 PHP 中的标准函数定义。

Directory
dir() 创建.
stdClass
__PHP_Incomplete_Class

自 PHP 5 起预定义的类

这些额外的预定义类是 PHP 5.0.0 引进的。

exception
php_user_filter

Closure

PHP5.3.0中引入了一个预定义的final类Closure,它可以用于实现 匿名函数

该类的构造方法禁止手工创建该类的对象(会导致一个 E_RECOVERABLE_ERROR 错误)。该类也有一个__invoke 方法来进行魔术调用。

特殊的类

以下标记符不可以作为类名,因为它们有着特殊的用途。

self
parent

用户评论:

[#1] Ashley Dambra [2014-02-19 18:43:50]

Here a simple class that allow to set anonymous function. It's an optimised class of stdClass.

<?php
class stdObject {
    public function 
__construct(array $arguments = array()) {
        if (!empty(
$arguments)) {
            foreach (
$arguments as $property => $argument) {
                if (
$argument instanceOf Closure) {
                    
$this->{$property} = $argument;
                } else {
                    
$this->{$property} = $argument;
                }
            }
        }
    }

    public function 
__call($method$arguments) {
        if (isset(
$this->{$method}) && is_callable($this->{$method})) {
            return 
call_user_func_array($this->{$method}, $arguments);
        } else {
            throw new 
Exception("Fatal error: Call to undefined method stdObject::{$method}()");
        }
    }
}

$person = new stdObject(array(
    
"name" => "nick",
    
"age" => 23,
    
"friends" => array("frank""sally""aaron"),
    
"sayHi" => function() {
        return 
"Hello there";
    }
));

$person->sayHi2 = function() {
    return 
"Hello there 2";
};

$person->test = function() {
    return 
"test";
};

var_dump($person->name$person->test(), $person->sayHi2());
?>

[#2] wyattstorch42 at outlook dot com [2013-12-24 01:15:11]

If you call var_export() on an instance of stdClass, it attempts to export it using ::__set_state(), which, for some reason, is not implemented in stdClass.

However, casting an associative array to an object usually produces the same effect (at least, it does in my case). So I wrote an improved_var_export() function to convert instances of stdClass to (object) array () calls. If you choose to export objects of any other class, I'd advise you to implement ::__set_state().

<?php

function improved_var_export ($variable$return false) {
    if (
$variable instanceof stdClass) {
        
$result '(object) '.improved_var_export(get_object_vars($variable), true);
    } else if (
is_array($variable)) {
        
$array = array ();
        foreach (
$variable as $key => $value) {
            
$array[] = var_export($keytrue).' => '.improved_var_export($valuetrue);
        }
        
$result 'array ('.implode(', '$array).')';
    } else {
        
$result var_export($variabletrue);
    }

    if (!
$return) {
        print 
$result;
        return 
null;
    } else {
        return 
$result;
    }
}

// Example usage:
$obj = new stdClass;
$obj->test 'abc';
$obj->other 6.2;
$obj->arr = array (123);

improved_var_export((object) array (
    
'prop1' => true,
    
'prop2' => $obj,
    
'assocArray' => array (
        
'apple' => 'good',
        
'orange' => 'great'
    
)
));


?>


Note: This function spits out a single line of code, which is useful to save in a cache file to include/eval. It isn't formatted for readability. If you want to print a readable version for debugging purposes, then I would suggest print_r() or var_dump().

[#3] spark at limao dot com dot br [2011-08-15 14:21:21]

if you want a Dynamic class you can extend from, add atributes AND methods on the fly you can use this:
<?php
    
class Dynamic extends stdClass{
        public function 
__call($key,$params){
            if(!isset(
$this->{$key})) throw new Exception("Call to undefined method ".get_class($this)."::".$key."()");
            
$subject $this->{$key};
            
call_user_func_array($subject,$params);
        }
    }
?>


this will accept both arrays, strings and Closures:
<?php
    $dynamic
->myMethod "thatFunction";
    
$dynamic->hisMethod = array($instance,"aMethod");
    
$dynamic->newMethod = array(SomeClass,"staticMethod");
    
$dynamic->anotherMethod = function(){
        echo 
"Hey there";
    };
?>


then call them away =D

[#4] Typer85 at gmail dot com [2007-02-17 08:58:57]

In response to the note below mine,

This list is not incomplete. Read the Manual folks, its listed there plain and simple:

"This section lists standard predefined classes. Miscellaneous extensions define other classes which are described in their reference."

Depending on what extensions you have, they might define their own classes. This list is just the standard classes as defined by PHP with no regards to extensions.

[#5] Simon Kissane [2004-09-14 00:54:18]

The above list is incomplete. For example, on my PHP 5.0 configuration (yours may differ depending on the extensions you choose to install), the following classes are predefined:

== "Core" ==
stdClass
Exception
__PHP_Incomplete_Class
php_user_filter
Directory

== Reflection API ==
ReflectionException
Reflection
ReflectionFunction
ReflectionParameter
ReflectionMethod
ReflectionClass
ReflectionObject
ReflectionProperty
ReflectionExtension

== SQLLite ==
SQLiteDatabase
SQLiteResult
SQLiteUnbuffered
SQLiteException

== Standard PHP Lib. ==
RecursiveIteratorIterator
FilterIterator
ParentIterator
LimitIterator
CachingIterator
CachingRecursiveIterator
ArrayObject
ArrayIterator
DirectoryIterator
RecursiveDirectoryIterator

== SimpleXML == 
SimpleXMLElement
SimpleXMLIterator

== DOM/XSL/XPath extensions ==
DOMException
DOMStringList
DOMNameList
DOMImplementationList
DOMImplementationSource
DOMImplementation
DOMNode
DOMNameSpaceNode
DOMDocumentFragment
DOMDocument
DOMNodeList
DOMNamedNodeMap
DOMCharacterData
DOMAttr
DOMElement
DOMText
DOMComment
DOMTypeinfo
DOMUserDataHandler
DOMDomError
DOMErrorHandler
DOMLocator
DOMConfiguration
DOMCdataSection
DOMDocumentType
DOMNotation
DOMEntity
DOMEntityReference
DOMProcessingInstruction
DOMStringExtend
DOMXPath
XSLTProcessor

[#6] unknown [2002-07-23 10:29:06]

It's handy to have a array of the reserved classes.....
var_dump (get_declared_classes ());

上一篇: 下一篇: