mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01: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
25 lines
500 B
PHP
25 lines
500 B
PHP
--TEST--
|
|
getConfig() method - basic test for getConfig()
|
|
--CREDITS--
|
|
Christian Wenz <wenz@php.net>
|
|
--EXTENSIONS--
|
|
tidy
|
|
--FILE--
|
|
<?php
|
|
$buffer = '<html></html>';
|
|
$config = array(
|
|
'indent' => true, // AutoBool
|
|
'indent-attributes' => true, // Boolean
|
|
'indent-spaces' => 3); // Integer
|
|
$tidy = new tidy();
|
|
$tidy->parseString($buffer, $config);
|
|
$c = $tidy->getConfig();
|
|
var_dump($c['indent']);
|
|
var_dump($c['indent-attributes']);
|
|
var_dump($c['indent-spaces']);
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
bool(true)
|
|
int(3)
|