Heim  >  Artikel  >  Backend-Entwicklung  >  HTML表格的每行转为CSV格式数组

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

WBOY
WBOYOriginal
2016-07-25 09:10:141252Durchsuche
",'",',$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.Cn
  • array_pop($table);
  • return $table;
  • }
  • ?>复制代码
  • HTML表格的每行转为CSV格式数组
    1. //HTML表格的每行转为CSV格式数组
    2. function get_tr_array($table) {
    3. //PHP开源代码
    4. $table = preg_replace("'
    ]*?>'si",'"',$table);
  • $table = str_replace("


  • Stellungnahme:
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn