mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

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
18 lines
391 B
PHP
18 lines
391 B
PHP
--TEST--
|
|
Notice triggered by invalid configuration options
|
|
--CREDITS--
|
|
Christian Wenz <wenz@php.net>
|
|
--EXTENSIONS--
|
|
tidy
|
|
--FILE--
|
|
<?php
|
|
$buffer = '<html></html>';
|
|
$config = array('bogus' => 'willnotwork');
|
|
|
|
$tidy = new tidy();
|
|
var_dump($tidy->parseString($buffer, $config));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: tidy::parseString(): Unknown Tidy configuration option "bogus" in %s on line %d
|
|
bool(true)
|