當前位置: 首頁>>代碼示例>>PHP>>正文


PHP tidy_repair_file函數代碼示例

本文整理匯總了PHP中tidy_repair_file函數的典型用法代碼示例。如果您正苦於以下問題:PHP tidy_repair_file函數的具體用法?PHP tidy_repair_file怎麽用?PHP tidy_repair_file使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了tidy_repair_file函數的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: flush

 /**
  * Flush buffer, optionally tidy up HTML, and close output if it's not to a php stream
  */
 public function flush()
 {
     if ($this->out && strncmp($this->outTarget, 'php://', 6) !== 0) {
         fclose($this->out);
     }
     if ($this->printsHTML === true && $this->outTarget !== null && strpos($this->outTarget, 'php://') !== 0 && strpos($this->outTarget, 'socket://') !== 0 && extension_loaded('tidy')) {
         file_put_contents($this->outTarget, tidy_repair_file($this->outTarget, array('indent' => true, 'wrap' => 0), 'utf8'));
     }
 }
開發者ID:TheTypoMaster,項目名稱:SPHERE-Framework,代碼行數:12,代碼來源:Printer.php

示例2: flush

 /**
  * Flush buffer, optionally tidy up HTML, and close output.
  */
 public function flush()
 {
     if ($this->out && $this->outTarget !== 'php://stderr') {
         fclose($this->out);
     }
     if ($this->printsHTML === TRUE && $this->outTarget !== NULL && strpos($this->outTarget, 'php://') !== 0 && strpos($this->outTarget, 'socket://') !== 0 && extension_loaded('tidy')) {
         file_put_contents($this->outTarget, tidy_repair_file($this->outTarget, array('indent' => TRUE, 'wrap' => 0), 'utf8'));
     }
 }
開發者ID:proofek,項目名稱:phpunit,代碼行數:12,代碼來源:Printer.php

示例3: flush

 /**
  * Flush buffer, optionally tidy up HTML, and close output.
  *
  */
 public function flush()
 {
     if ($this->out !== NULL) {
         fclose($this->out);
     }
     if ($this->printsHTML === TRUE && $this->outTarget !== NULL && extension_loaded('tidy')) {
         file_put_contents($this->outTarget, tidy_repair_file($this->outTarget));
     }
 }
開發者ID:xiplias,項目名稱:pails,代碼行數:13,代碼來源:Printer.php

示例4: array

<?php

$l = 1;
$s = "";
$a = array();
tidy_repair_string($s, $l, $l, $l);
tidy_repair_string($s, $s, $s, $s);
tidy_repair_string($l, $l, $l, $l);
tidy_repair_string($a, $a, $a, $a);
tidy_repair_file($s, $l, $l, $l);
tidy_repair_file($s, $s, $s, $s);
tidy_repair_file($l, $l, $l, $l);
tidy_repair_file($a, $a, $a, $a);
echo "Done\n";
開發者ID:gleamingthecube,項目名稱:php,代碼行數:14,代碼來源:ext_tidy_tests_022.php

示例5: tidy_repair_file

<?php

$fixed = tidy_repair_file('bad.html');
file_put_contents('good.html', $fixed);
開發者ID:zmwebdev,項目名稱:PHPcookbook-code-3ed,代碼行數:4,代碼來源:tidy.php

示例6: array

<?php

$config = array('output-xhtml' => true);
$fixed = tidy_repair_file('bad.html', $config);
file_put_contents('good.xhtml', $fixed);
開發者ID:zmwebdev,項目名稱:PHPcookbook-code-3ed,代碼行數:5,代碼來源:tidy-xhtml.php

示例7: tidy_repair_file

<?php

$fix_html = tidy_repair_file('bad.html');
echo $fix_html;
開發者ID:xiaobudongzhang,項目名稱:lib,代碼行數:4,代碼來源:tidy.php


注:本文中的tidy_repair_file函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。