background image

  $time = substr($str[0],-10);
  //设置用在脚本中所有日期/时间函数的默认时区。
  date_default_timezone_set("prc");
  echo date("y-m-d h:i",$time);
 }else{
  //分卷
  $str = explode("_part", $tb);
  $time = substr($str[0],-10);
  //设置用在脚本中所有日期/时间函数的默认时区。
  date_default_timezone_set("prc");
  echo date("y-m-d h:i",$time);
 }
?>
</td>
<td class="t list" width="15%" align="center">
<?php
 //取分卷号
 if(!preg_match("/_part/", $tb)){
  echo "1";
 }else{
  $str = explode(".", $tb);
  echo substr($str[0],-1);
 }
?>
</td>
<td class="t list" width="20%" align="center">
<a href="?fn=<?php echo $tb; ?>" onclick="return confirm()">导入</a>
</td>
<td class="t list" width="10%" align="center">
<input type="checkbox" name="choice[]" value="<?php echo $tb; ?>" />
</td>
</tr>
<?php } ?>
</tbody></table>
<table id="bottom"><tbody>
<tr align="center"><td class="bg-white" colspan="3">
<input class="btn1" type="button" name="checkall" value="全选" id="checkall" />
<input  class="btn2"  type="submit"  name="sub"  value=" 删 除 备 份 "  onclick="return 
sub_del(this.form)" />
</td></tr>
</tbody></table>
</form>
</body>
</html>