tidy_setopt

(PECL tidy >= 0.5.2)

tidy_setoptBelgenin yapılandırma seçeneklerini günceller

Açıklama

bool tidy_setopt ( string $seçenek , mixed $değer )

Belgenin seçenek seçeneğinin değerini değer ile günceller.

Değiştirgeler

seçenek

Tidy seçenek ismi. Yapılandırma seçeneklerinin açıklamalarını » http://tidy.sourceforge.net/docs/quickref.html adresinde bulabilirsiniz.

değer

Seçeneğin yeni değeri.

Dönen Değerler

Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.

Örnekler

Örnek 1 - tidy_setopt() örneği

<?php
$html 
'<p>test</i>';

$tidy tidy_parse_string($html);

tidy_setopt('indent'FALSE);
?>

Notlar

Bilginize: Bu işlev sadece Tidy 1.0 ile kullanılabilir. Tidy 2.0'dan itibaren kullanımı önerilmemekte olup bu nedenle de kaldırılmıştır.

Ayrıca Bakınız

add a note add a note

User Contributed Notes 1 note

up
1
Anonymous
16 years ago
If you are using the object oriented style of Tidy options are set when calling tidy::parseString(...).

Read more at http://us3.php.net/manual/en/function.tidy-parse-string.php
To Top