016.phpt 375 B

1234567891011121314151617
  1. --TEST--
  2. Check for vtiful presence
  3. --SKIPIF--
  4. <?php if (!extension_loaded("xlswriter")) print "skip"; ?>
  5. --FILE--
  6. <?php
  7. $config = ['path' => './tests'];
  8. $excel = new \Vtiful\Kernel\Excel($config);
  9. $filePath = $excel->fileName("tutorial01.xlsx")
  10. ->mergeCells('A1:C1', 'Merge cells')
  11. ->output();
  12. var_dump($filePath);
  13. ?>
  14. --EXPECT--
  15. string(23) "./tests/tutorial01.xlsx"