1234567891011121314151617181920212223 |
- --TEST--
- Check for vtiful presence
- --SKIPIF--
- <?php if (!extension_loaded("xlswriter")) print "skip"; ?>
- --FILE--
- <?php
- $config = ['path' => './tests'];
- $excel = new \Vtiful\Kernel\Excel($config);
- $filePath = $excel->fileName('show_comment.xlsx')
- ->header(['Item', 'Cost'])
- ->insertComment(0,1,'comment')
- ->showComment()
- ->output();
- var_dump($filePath);
- ?>
- --CLEAN--
- <?php
- @unlink(__DIR__ . '/show_comment.xlsx');
- ?>
- --EXPECT--
- string(25) "./tests/show_comment.xlsx"
|