sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/CellBuildRange.php

27 lines
348 B
PHP
Raw Normal View History

<?php
return [
[
'B4:E9',
[
[
'B4',
'E9',
],
],
],
[
'B4:E9,H2:O11',
[
[
'B4',
'E9',
],
[
'H2',
'O11',
],
],
],
];