mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
We fix the most often occuring typos according to a recent codespell report[1] in tests, code comments and documentation. [1] <https://fossies.org/linux/test/php-src-master-f8f48ce.191129.tar.gz/codespell.html>.
21 lines
395 B
PHP
21 lines
395 B
PHP
--TEST--
|
|
SimpleXML: overridden count() method
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
class SXE extends SimpleXmlElement {
|
|
public function count() {
|
|
echo "Called Count!\n";
|
|
return parent::count();
|
|
}
|
|
}
|
|
|
|
$str = '<xml><c>asdf</c><c>ghjk</c></xml>';
|
|
$sxe = new SXE($str);
|
|
var_dump(count($sxe));
|
|
?>
|
|
--EXPECT--
|
|
Called Count!
|
|
int(2)
|