php-src/ext/tidy/tests/032.phpt
2009-09-01 13:06:16 +00:00

18 lines
350 B
PHP

--TEST--
tidy_error_count() function - basic test for tidy_error_count()
--CREDITS--
Christian Wenz <wenz@php.net>
--SKIPIF--
<?php
if (!extension_loaded('tidy')) die ('skip tidy not present');
?>
--FILE--
<?php
$buffer = '<img src="file.png" /><php>';
$tidy = tidy_parse_string($buffer);
var_dump(tidy_error_count($tidy));
?>
--EXPECTF--
int(%d)