ru_php/ext/tidy/tests/031.phpt

17 lines
322 B
PHP

--TEST--
tidy_config_count() function - basic test for tidy_config_count()
--CREDITS--
Christian Wenz <wenz@php.net>
--EXTENSIONS--
tidy
--FILE--
<?php
$buffer = '<html></html>';
$config = array('doctype' => 'auto');
$tidy = tidy_parse_string($buffer, $config);
var_dump(tidy_config_count($tidy));
?>
--EXPECTF--
int(%d)