• 技术文章 >后端开发 >PHP问题

    php语言怎么做表格

    (*-*)浩(*-*)浩2019-10-15 14:19:17原创1917
    要使用纯PHP创建或编辑Excel电子表格,我们将使用PHPExcel库,它可以读写许多电子表格格式,包括xls,xlsx,ods和csv。在我们继续之前,仔细检查您的服务器上是否有PHP 5.2或更高版本以及安装了以下PHP扩展:php_zip,php_xml和php_gd2。

    创建电子表格

    创建电子表格是PHP应用程序中最常见的用例之一,用于将数据导出到Excel电子表格。查看以下代码,了解如何使用PHPExcel创建示例Excel电子表格: (推荐学习:PHP视频教程

    // Include PHPExcel library and create its object
    require('PHPExcel.php');
     
    $phpExcel = new PHPExcel;
     
    // Set default font to Arial
    $phpExcel->getDefaultStyle()->getFont()->setName('Arial');
     
    // Set default font size to 12
    $phpExcel->getDefaultStyle()->getFont()->setSize(12);
     
    // Set spreadsheet properties – title, creator and description
    $phpExcel ->getProperties()->setTitle("Product list");
    $phpExcel ->getProperties()->setCreator("Voja Janjic");
    $phpExcel ->getProperties()->setDescription("PHP Excel spreadsheet testing.");
     
    // Create the PHPExcel spreadsheet writer object
    // We will create xlsx file (Excel 2007 and above)
    $writer = PHPExcel_IOFactory::createWriter($phpExcel, "Excel2007");
     
    // When creating the writer object, the first sheet is also created
    // We will get the already created sheet
    $sheet = $phpExcel ->getActiveSheet();
     
    // Set sheet title
    $sheet->setTitle('My product list');
     
    // Create spreadsheet header
    $sheet ->getCell('A1')->setValue('Product');
    $sheet ->getCell('B1')->setValue('Quanity');
    $sheet ->getCell('C1')->setValue('Price');
     
    // Make the header text bold and larger
    $sheet->getStyle('A1:D1')->getFont()->setBold(true)->setSize(14);
     
    // Insert product data
     
     
    // Autosize the columns
    $sheet->getColumnDimension('A')->setAutoSize(true);
    $sheet->getColumnDimension('B')->setAutoSize(true);
    $sheet->getColumnDimension('C')->setAutoSize(true);
     
    // Save the spreadsheet
    $writer->save('products.xlsx');

    如果要下载电子表格而不是将其保存到服务器,请执行以下操作:

    header('Content-Type: application/vnd.ms-excel');
    header('Content-Disposition: attachment;filename="file.xlsx"');
    header('Cache-Control: max-age=0');
    $writer->save('php://output');

    以上就是php语言怎么做表格的详细内容,更多请关注php中文网其它相关文章!

    声明:本文原创发布php中文网,转载请注明出处,感谢您的尊重!如有疑问,请联系admin@php.cn处理
    专题推荐:php
    上一篇:php全栈工程师需要会什么? 下一篇:php怎么判断一个数字是几位数?
    大前端线上培训班

    相关文章推荐

    • php有map吗• php怎么调用自建证书的webservice• php好吗• php怎么读取输入

    全部评论我要评论

  • 取消发布评论发送
  • 1/1

    PHP中文网