mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
7f2f0c007c
For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
16 lines
286 B
PHP
16 lines
286 B
PHP
--TEST--
|
|
tidy_error_count() function - basic test for tidy_error_count()
|
|
--CREDITS--
|
|
Christian Wenz <wenz@php.net>
|
|
--EXTENSIONS--
|
|
tidy
|
|
--FILE--
|
|
<?php
|
|
$buffer = '<img src="file.png" /><php>';
|
|
|
|
$tidy = tidy_parse_string($buffer);
|
|
var_dump(tidy_error_count($tidy));
|
|
?>
|
|
--EXPECTF--
|
|
int(%d)
|