43 function __construct($page)
45 if (empty ($page)) {
return; }
60 $matches = preg_match_all(
61 "|.*?id='LicItem.*?href='(.*?)'>(.*?)<.*?href=\"(.*?)\">(.*?)<|",
62 $this->page, $tableEntries, PREG_PATTERN_ORDER);
63 print
"tableEntries are:\n"; print_r($tableEntries) .
"\n";
67 function _createRtnLicTbl($toCombine, $matches)
75 $numTblEntries = count($toCombine[1]);
77 for ($i = 0; $i <= $numTblEntries-1; $i++)
80 $pushed = array_push($links ,$toCombine[1][$i], $toCombine[4][$i]);
81 if($pushed == 0) { print
"parseLicenseTbl: Internal Error! Nothing Inserted!\n"; }
82 $rtnList[$toCombine[5][$i]] = $links;