Last active
December 8, 2022 09:32
-
-
Save sharapeco/942662b73e99328bcaf6be7d60ad72d8 to your computer and use it in GitHub Desktop.
PhpSpreadsheetを使うと欲しくなる関数
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use PhpOffice\PhpSpreadsheet\Cell\Coordinate; | |
function coords(int $startCol, int $startRow, ?int $endCol = null, ?int $endRow = null): string | |
{ | |
$coords = Coordinate::stringFromColumnIndex($startCol) . $startRow; | |
if (isset($endRow)) { | |
$coords .= ':' . Coordinate::stringFromColumnIndex($endCol) . $endRow; | |
} | |
return $coords; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment