PHP生成Excel, 控制Excel单元格中的换行符
公司使用Mantis管理bug, Mantis有一个功能, 将bug导出为Excel,
但是目前的这个mantis版本, 在导出excel的时候, "摘要,说明,问题重现步骤说明,附加信息,评论"等等这些信息中,
提交bug时候的回车换行符都不见了, 因为没有了格式, 在excel中读起来很不方便,
?
这回想改善的便是这个问题,
在使用php做成excel的时候, 如何在一个excel cell内写入换行符, 控制该单元格的格式.
?
我试验了一下, \r\n在生成excel的时候, 是无效的, 会被过滤调.
但是要是写入
, 起到的效果不是单元格内换行, 而是换了一个新的单元格.
google了下, 要想达到单元格内换行的目的, 需要插入下面这个字符串
?
'<br style="mso-data-placement:same-cell;" />'?
?
另外我调查的过程中, 来发现了另外一个有趣的问题.
前面已经提到, 在用php生成excel的时候, \r\n是不起任何换行作用的, 要想控制换行, 需要借助html标记.
但是, 如果把\r\n夹杂在
中间,
形如下面这样, 那么, 这时候的\r\n相当于一个
, 会在做成的excel中, 新起一个单元格.
<br> ..........\r\n<br> ..........\r\n<br> ..........\r\n<br>?
这种行为显然也不是我们想要的,
所以还是像下面这样, 把他们统统替换掉吧.
$p_new_lines = array("\r\n", "\n", "\r","\r\n", "<pre class="brush:php;toolbar:false">","","
","","
"); $p_change_line_in_excel_cell = '
'; $p_result = str_replace( $p_new_lines,$p_change_line_in_excel_cell,$p_input); ?
?
?
?

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于折叠表格的相关问题,就是分类汇总的功能,这样查看数据会非常的方便,下面一起来看一下,希望对大家有帮助。

在之前的文章《实用Excel技巧分享:利用 数据透视表 来汇总业绩》中,我们学习了下Excel数据透视表,了解了利用数据透视表来汇总业绩的方法。而今天我们来聊聊怎么计算时间差(年数差、月数差、周数差),希望对大家有所帮助!

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于AGGREGATE函数的相关内容,该函数用法与SUBTOTAL函数类似,但在功能上比SUBTOTAL函数更加强大,下面一起来看一下,希望对大家有帮助。

在之前的文章《实用Word技巧分享:聊聊你没用过的“行号”功能》中,我们了解了Word中你肯定没用过的"行号”功能。今天继续实用Word技巧分享,看看Excel表格怎么借用Word进行分栏打印,快来收藏使用吧!

在之前的文章《实用Excel技巧分享:原来“定位功能”这么有用!》中,我们了解了定位功能的妙用。而今天我们聊聊合并后的单元格如何实现筛选功能,分享一种复制粘贴和方法解决这个问题,另外还会给大家分享一种合并单元格的不错的替代方式。

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于zenmm制作倒计时牌的相关内容,使用Excel中的日期函数结合按指定时间刷新的VBA代码,即可制作出倒计时牌,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于如何使用函数寻找总和为某个值的组合的问题,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于excel的相关知识,其中主要介绍了关于折线图的相关问题,下面就根据一些示例来看一下怎么去应用,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
