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


PHP SimpleHtmlSaxParser類代碼示例

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


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

示例1: parse

 /**
  *    Reads the raw content and send events
  *    into the page to be built.
  *    @param $response SimpleHttpResponse  Fetched response.
  *    @return SimplePage                   Newly parsed page.
  *    @access public
  */
 function parse($response)
 {
     $this->tags = array();
     $this->page = $this->createPage($response);
     $parser = new SimpleHtmlSaxParser($this);
     $parser->parse($response->getContent());
     $this->acceptPageEnd();
     $page = $this->page;
     $this->free();
     return $page;
 }
開發者ID:ilune,項目名稱:simpletest,代碼行數:18,代碼來源:SimplePhpPageBuilder.php

示例2: testHtmlEntityTranslation

 function testHtmlEntityTranslation()
 {
     $this->assertEqual(SimpleHtmlSaxParser::normalise('&lt;&gt;&quot;&amp;&#039;'), '<>"&\'');
 }
開發者ID:sebs,項目名稱:simpletest,代碼行數:4,代碼來源:parser_test.php

示例3: getText

 /**
  *    Accessor for plain text of page as a text browser
  *    would see it.
  *    @return string        Plain text of page.
  *    @access public
  */
 function getText()
 {
     if (!$this->_text) {
         $this->_text = SimpleHtmlSaxParser::normalise($this->_raw);
     }
     return $this->_text;
 }
開發者ID:Spark-Eleven,項目名稱:revive-adserver,代碼行數:13,代碼來源:page.php

示例4: getDefault

 /**
  *    Accessor for starting value.
  *    @return string        Parsed value.
  *    @access public
  */
 function getDefault()
 {
     return $this->_wrap(SimpleHtmlSaxParser::decodeHtml($this->getContent()));
 }
開發者ID:JackCanada,項目名稱:moodle-hacks,代碼行數:9,代碼來源:tag.php

示例5: testNestedFrameInFrameset

 function testNestedFrameInFrameset()
 {
     $listener = $this->createListener();
     $listener->expectAt(0, 'startElement', array('frameset', array()));
     $listener->expectAt(1, 'startElement', array('frame', array('src' => 'frame.html')));
     $listener->expectCallCount('startElement', 2);
     $listener->expectOnce('addContent', array('<noframes>Hello</noframes>'));
     $listener->expectOnce('endElement', array('frameset'));
     $parser = new SimpleHtmlSaxParser($listener);
     $this->assertTrue($parser->parse('<frameset><frame src="frame.html"><noframes>Hello</noframes></frameset>'));
 }
開發者ID:ngugijames,項目名稱:ThinkUp,代碼行數:11,代碼來源:php_parser_test.php

示例6: normalise

 /**
  *    Turns HTML into text browser visible text. Images
  *    are converted to their alt text and tags are supressed.
  *    Entities are converted to their visible representation.
  *    @param string $html        HTML to convert.
  *    @return string             Plain text.
  *    @access public
  */
 static function normalise($html)
 {
     $text = preg_replace('|<!--.*?-->|', '', $html);
     $text = preg_replace('|<script[^>]*>.*?</script>|', '', $text);
     $text = preg_replace('|<img[^>]*alt\\s*=\\s*"([^"]*)"[^>]*>|', ' \\1 ', $text);
     $text = preg_replace('|<img[^>]*alt\\s*=\\s*\'([^\']*)\'[^>]*>|', ' \\1 ', $text);
     $text = preg_replace('|<img[^>]*alt\\s*=\\s*([a-zA-Z_]+)[^>]*>|', ' \\1 ', $text);
     $text = preg_replace('|<[^>]*>|', '', $text);
     $text = SimpleHtmlSaxParser::decodeHtml($text);
     $text = preg_replace('|\\s+|', ' ', $text);
     return trim(trim($text), "�");
     // TODO: The \xAO is a &nbsp;. Add a test for this.
 }
開發者ID:sebs,項目名稱:simpletest,代碼行數:21,代碼來源:parser.php

示例7: normalise

 /**
  *    Turns HTML into text browser visible text. Images
  *    are converted to their alt text and tags are supressed.
  *    Entities are converted to their visible representation.
  *    @param string $html        HTML to convert.
  *    @return string             Plain text.
  *    @access public
  *    @static
  */
 function normalise($html)
 {
     $text = preg_replace('|<!--.*?-->|', '', $html);
     $text = preg_replace('|<img.*?alt\\s*=\\s*"(.*?)".*?>|', ' \\1 ', $text);
     $text = preg_replace('|<img.*?alt\\s*=\\s*\'(.*?)\'.*?>|', ' \\1 ', $text);
     $text = preg_replace('|<img.*?alt\\s*=\\s*([a-zA-Z_]+).*?>|', ' \\1 ', $text);
     $text = preg_replace('|<.*?>|', '', $text);
     $text = SimpleHtmlSaxParser::decodeHtml($text);
     $text = preg_replace('|\\s+|', ' ', $text);
     return trim($text);
 }
開發者ID:nsystem1,項目名稱:ZeeJong,代碼行數:20,代碼來源:parser.php

示例8: normalise

 /**
  *    Turns HTML into text browser visible text. Images
  *    are converted to their alt text and tags are supressed.
  *    Entities are converted to their visible representation.
  *    @param string $html        HTML to convert.
  *    @return string             Plain text.
  *    @access public
  *    @static
  */
 function normalise($html)
 {
     $text = preg_replace('|<!--.*?-->|', '', $html);
     $text = preg_replace('|<script[^>]*>.*?</script>|', '', $text);
     $text = preg_replace('|<img[^>]*alt\\s*=\\s*"([^>]*)"[^>]*>|', ' \\1 ', $text);
     $text = preg_replace('|<img[^>]*alt\\s*=\\s*\'([^>]*)\'[^>]*>|', ' \\1 ', $text);
     $text = preg_replace('|<img[^>]*alt\\s*=\\s*([a-zA-Z_]+)[^>]*>|', ' \\1 ', $text);
     $text = preg_replace('|<[^>]*>|', '', $text);
     $text = SimpleHtmlSaxParser::decodeHtml($text);
     $text = preg_replace('|\\s+|', ' ', $text);
     return trim($text);
 }
開發者ID:sebs,項目名稱:simpletest,代碼行數:21,代碼來源:parser.php


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