Php converts each column in an HTML table into an array to collect table data.
This example describes how php converts each column in an HTML table into an array to collect table data. Share it with you for your reference. The details are as follows:
The following php code converts each row and column of an HTML table into an array to collect table data.
<? Phpfunction get_td_array ($ table) {$ table = preg_replace ("'<table [^>] *?> 'Si "," ", $ table); $ table = preg_replace (" '<tr [^>] *?> 'Si "," ", $ table); $ table = preg_replace (" '<td [^>] *?> 'Si "," ", $ table); $ table = str_replace (" </tr> "," {tr} ", $ table ); $ table = str_replace ("</td>", "{td}", $ table); // remove the HTML Tag $ table = preg_replace ("'<[/!] *? [^ <>] *?> 'Si "," ", $ table); // remove the blank character $ table = preg_replace (" '([rn]) [s] + '","", $ table); $ table = str_replace ("", "", $ table); $ table = str_replace ("", "", $ table ); $ table = explode ('{tr}', $ table); array_pop ($ table); foreach ($ table as $ key => $ tr) {$ td = explode ('{td}', $ tr); array_pop ($ td); $ td_array [] = $ td;} return $ td_array;}?>