Lots of classes do not allow `__debugInfo()` overrides to work
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- C
- Star
- 40.4k
- Fork
- 8.1k
- Merge trung bình
- 2 ngày 13 giờ
- Pull request đã merge (30 ngày)
- 96
Mô tả
Description
Inspired by #11310, I wrote a quick test script to check if there were other classes where creating a subclass with a __debugInfo() method did not work. I found a number of such classes (the one seg fault I filed separately at #16316 since that is a bigger issue than the override just not working).
I tested against b675db4c56dd0de4ea1f5195d587ed90f0096ed8
I did not test against all extensions, `php -m` output provided
[PHP Modules]
bcmath
calendar
Core
ctype
curl
date
dba
dom
enchant
exif
FFI
fileinfo
filter
ftp
gd
gettext
gmp
hash
iconv
intl
json
ldap
libxml
mbstring
mysqli
mysqlnd
odbc
openssl
pcntl
pcre
PDO
pdo_dblib
PDO_Firebird
pdo_mysql
PDO_ODBC
pdo_pgsql
pdo_sqlite
pgsql
Phar
posix
random
readline
Reflection
session
shmop
SimpleXML
snmp
soap
sockets
sodium
SPL
sqlite3
standard
sysvmsg
sysvsem
sysvshm
tidy
tokenizer
xml
xmlreader
xmlwriter
xsl
zend_test
zip
zlib
Approach: create a custom subclass with an empty constructor, and a __debugInfo() method returning ['x' => 'y']. The var_dump() a new instance of that subclass and check the output.
I found 17 classes across the DOM and SimpleXML extension where doing this caused an exception to be thrown relating to invalid state, e.g.
<?php
class Demo extends DOMNode {
public function __construct() {}
public function __debugInfo(): array {
return ['x' => 'y'];
}
}
var_dump( new Demo() );
List of the 17 classes
DOMNode::class,
DOMNameSpaceNode::class,
DOMDocumentFragment::class,
DOMDocument::class,
DOMCharacterData::class,
DOMAttr::class,
DOMElement::class,
DOMText::class,
DOMComment::class,
DOMCdataSection::class,
DOMDocumentType::class,
DOMNotation::class,
DOMEntity::class,
DOMEntityReference::class,
DOMProcessingInstruction::class,
SimpleXMLElement::class,
SimpleXMLIterator::class,
I also found a further 20 classes where the override does not seem to work, across multiple extensions.
List of those classes
array (
0 => 'DatePeriod',
1 => 'DOMImplementation',
2 => 'Dom\\Implementation',
3 => 'DOMNodeList',
4 => 'Dom\\NodeList',
5 => 'DOMNamedNodeMap',
6 => 'Dom\\NamedNodeMap',
7 => 'Dom\\DtdNamedNodeMap',
8 => 'Dom\\HTMLCollection',
9 => 'IntlTimeZone',
10 => 'IntlCalendar',
11 => 'IntlGregorianCalendar',
12 => 'IntlBreakIterator',
13 => 'IntlRuleBasedBreakIterator',
14 => 'IntlCodePointBreakIterator',
15 => 'SplFixedArray',
16 => 'mysqli',
17 => 'mysqli_result',
18 => 'mysqli_stmt',
19 => 'XMLReader',
)
You can see the script I used at https://gist.github.com/DanielEScherzer/c979c15b47bc603758c4c38ba25dd510
PHP Version
dev-master
Operating System
No response
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Bắt đầu với script tái hiện được liên kết và các kiểm tra var_dump của nó, sau đó xem xét các lớp DOM, SimpleXML và các lớp bị ảnh hưởng khác được liệt kê. Tái hiện các ngoại lệ do trạng thái không hợp lệ và các override không hoạt động trong những lớp được báo cáo; hoàn tất khi hành vi của __debugInfo() trong các lớp con hoạt động nhất quán mà không có những ngoại lệ đó.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- c, php
- Lĩnh vực
- backend
- Loại issue
- Lỗi
- Độ khó
- 4/5
- Thời gian dự kiến
- 3-5 ngày
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Khá rõ ràng
- Mức phù hợp với người mới
- 35/100