mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
15 lines
192 B
Plaintext
15 lines
192 B
Plaintext
|
--TEST--
|
||
|
SPL: Allow valid extension of SplFileObject::fscanf
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class A extends SplFileObject {
|
||
|
public function fscanf($format) {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
?>
|
||
|
===DONE===
|
||
|
--EXPECT--
|
||
|
===DONE===
|