PHP Classes

File: test-class.htmlparser.php

Recommend this page to a friend!
  Classes of Lin Zhemin   HTMLparser   ???   Download  
File: ???
Role: ???
Content type: text/plain
Description: Test script which demostrates the basic usage of class.htmlparser
Class: HTMLparser
Author: By
Last change:
Date: 24 years ago
Size: 215 bytes
 

Contents

Class file image Download
<? // for test class.htmlparser include_once('class.htmlparser.php'); $fp = fopen('php://stdin', 'r') or die('stdin'); $s = fread($fp, 1048576); $h = new HTMLin($s); echo $h->show(); fclose($fp); ?>