summaryrefslogtreecommitdiff
path: root/ext/tidy/tests/007.phpt
blob: 9987677df6a4006c59879cecb3d1fe859ba5710d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--TEST--
Verbose tidy_setopt() / tidy_getopt()
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
--POST--
--GET--
--INI--
--FILE--
<?php 
    
    echo "Current Value of 'tidy-mark': ";
    var_dump(tidy_getopt("tidy-mark"));
    tidy_setopt($tidy, "tidy-mark", true);
    echo "\nNew Value of 'tidy-mark': ";
    var_dump(tidy_getopt("tidy-mark"));
    echo "Current Value of 'error-file': ";
    var_dump(tidy_getopt("error-file"));
    tidy_setopt($tidy, "error-file", "foobar");
    echo "\nNew Value of 'error-file': ";
    var_dump(tidy_getopt("error-file"));
    echo "Current Value of 'tab-size': ";
    var_dump(tidy_getopt("tab-size"));
    tidy_setopt($tidy, "tab-size", 10);
    echo "\nNew Value of 'tab-size': ";
    var_dump(tidy_getopt("tab-size"));
?>
--EXPECT--
Current Value of 'tidy-mark': bool(false)

New Value of 'tidy-mark': bool(true)
Current Value of 'error-file': string(0) ""

New Value of 'error-file': string(6) "foobar"
Current Value of 'tab-size': int(8)

New Value of 'tab-size': int(10)