为什么var_dump
不能使用DomDocument个对象,而print($dom->saveHTML())
会产生输出?
答案 0 :(得分:9)
答案 1 :(得分:6)
它与任何接口无关,实际上非常简单。 var_dump只显示开发人员通过调用此类C函数
来声明已声明的类属性ZEND_API int zend_declare_property(...)
ZEND_API int zend_declare_property_null(...)
ZEND_API int zend_declare_property_bool(...)
ZEND_API int zend_declare_property_long(...)
ZEND_API int zend_declare_property_double(...)
ZEND_API int zend_declare_property_string(...)
ZEND_API int zend_declare_property_stringl(...)
例如,类Exception的属性在Zend / zend_exceptions.c文件中声明,如下所示
zend_declare_property_string(default_exception_ce, "message", sizeof("message")-1, "", ZEND_ACC_PROTECTED TSRMLS_CC);
zend_declare_property_string(default_exception_ce, "string", sizeof("string")-1, "", ZEND_ACC_PRIVATE TSRMLS_CC);
zend_declare_property_long(default_exception_ce, "code", sizeof("code")-1, 0, ZEND_ACC_PROTECTED TSRMLS_CC);
zend_declare_property_null(default_exception_ce, "file", sizeof("file")-1, ZEND_ACC_PROTECTED TSRMLS_CC);
zend_declare_property_null(default_exception_ce, "line", sizeof("line")-1, ZEND_ACC_PROTECTED TSRMLS_CC);
zend_declare_property_null(default_exception_ce, "trace", sizeof("trace")-1, ZEND_ACC_PRIVATE TSRMLS_CC);
zend_declare_property_null(default_exception_ce, "previous", sizeof("previous")-1, ZEND_ACC_PRIVATE TSRMLS_CC);
所有这些功能然后调用
ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, ...
更新属性列表。接下来是var_dump
中的ext/standard/var.c
,并通过调用php_object_property_dump
来查找它们,object(DOMDocument)#1 (0) {
}
通过相同的属性列表枚举它们。您会看到故意暴露内部结构。
DOM扩展的开发人员选择不公开类的结构。他们根本就不会调用那些函数。这就是你什么也看不见的原因。
ext/dom/php_dom.c
如果您查看code
,您会发现一次属性声明。它适用于DomException类。它重新定义了属性zend_declare_property_long(dom_domexception_class_entry, "code", ...
。
var_dump (new Exception ('test', 102));
object(Exception)#1 (7) {
["message":protected]=>
string(4) "test"
["string":"Exception":private]=>
string(0) ""
["code":protected]=>
int(102)
["file":protected]=>
string(37) "/usr/local/www/apache22/data/dump.php"
["line":protected]=>
int(3)
["trace":"Exception":private]=>
array(0) {
}
["previous":"Exception":private]=>
NULL
}
如果异常转储看起来像
var_dump (new DOMException ());
object(DOMException)#2 (7) {
["message":protected]=>
string(0) ""
["string":"Exception":private]=>
string(0) ""
["file":protected]=>
string(37) "/usr/local/www/apache22/data/dump.php"
["line":protected]=>
int(9)
["trace":"Exception":private]=>
array(0) {
}
["previous":"Exception":private]=>
NULL
["code"]=>
int(0)
}
DOMException转储有点不同。
{{1}}
看看代码属性如何移动到最后?这是因为重新声明。