This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class parseHTML | |
{ | |
//counter appended to chunked file names | |
protected $counter = 0; | |
//Store book information such as book name, chapter names, version | |
protected $bookInfo; | |
//Holds filename with no extension | |
protected $fileName; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require('XML.php'); | |
class OpenXML extends XML | |
{ | |
var $fileHandler; | |
public function openXMLFile($filename, $mode='r'){ | |
$this->fileHandler = @fopen($filename, $mode); | |
} |
NewerOlder