mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
18 lines
356 B
PHP
18 lines
356 B
PHP
--TEST--
|
|
tidy_warning_count() function - basic test for tidy_warning_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_warning_count($tidy));
|
|
?>
|
|
--EXPECTF--
|
|
int(%d)
|