您好,欢迎访问一九零五行业门户网

HTML表格的每行转为CSV格式数组

html表格的每行转为csv格式数组 //html表格的每行转为csv格式数组 function get_tr_array($table) {//php开源代码$table = preg_replace(']*?>'si,'',$table); $table = str_replace( ,',',$table); $table = str_replace(
,{tr},$table); //开源代码osphp.com.cn //去掉 html 标记 $table = preg_replace(']*?>'si,,$table); //去掉空白字符 $table = preg_replace('([rn])[s]+',,$table);//开源代码osphp.com.cn$table = str_replace( ,,$table); $table = str_replace( ,,$table); $table = explode(,{tr},$table);//开源代码osphp.com.cnarray_pop($table); return $table; } ?>复制代码
其它类似信息

推荐信息