summaryrefslogtreecommitdiff
path: root/ext/tidy/tests/032.phpt
blob: 23230b06506cc05f2edf6b45d98c1fcc5d623068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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)