load($filename); $sheet = $spreadsheet->getActiveSheet(); $comment = $sheet->getComment('A1'); $commentString = (string) $comment; self::assertStringContainsString('編號長度限制:', $commentString); self::assertSame('jill.chen', $comment->getAuthor()); $comment = $sheet->getComment('E1'); $commentString = (string) $comment; self::assertStringContainsString('若為宅配物流僅能選「純配送」', $commentString); self::assertSame('Anderson Chen 陳宗棠', $comment->getAuthor()); } }