Home > Backend Development > PHP Tutorial > phpexcel是否可以获取合并单元格的开始和结束?

phpexcel是否可以获取合并单元格的开始和结束?

WBOY
Release: 2016-06-23 13:33:46
Original
1163 people have browsed it

phpexcel是否可以获取合并单元格的开始和结束的列


回复讨论(解决方案)

用 getMergeCells 获取合并单元格信息
是一个数组,每个成员都是 X1:Y1 这样的格式

用 getMergeCells 获取合并单元格信息
是一个数组,每个成员都是 X1:Y1 这样的格式


版主威武。解决了我的问题。结贴给分。多谢多谢,顺便问下,有phpexcel的手册吗,感觉版主什么都知道。。。

用 getMergeCells 获取合并单元格信息
是一个数组,每个成员都是 X1:Y1 这样的格式


版主,再问下,能否获取到这个合并单元格的值,比如x1:Y1的内容。。

这是我用过的,供你参考

function get_pos($ar) {	$col = $row = array();	foreach($ar as $v) {		preg_match_all('/([A-Z]+)(\d+):([A-Z]+)(\d+)/', $v, $r);		$col = array_merge($col, $r[1], $r[3]);		$row = array_merge($row, $r[2], $r[4]);	}	return array(min($col), max($row));}
Copy after login

phpexce 不是带有英文的文档吗?借助在线翻译了解个大概也就行了
有需求,自然就会用解决之道。
你这样不也是一条路吗

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template