php-ext-xlswriter/tests/018.phpt

26 lines
485 B
Plaintext
Raw Permalink Normal View History

2024-03-05 10:01:08 +08:00
--TEST--
Check for vtiful presence
--SKIPIF--
<?php if (!extension_loaded("xlswriter")) print "skip"; ?>
--FILE--
<?php
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$fileObject = $excel->fileName("18.xlsx");
$fileObject->header(['name', 'age'])
->data([['viest', 21]])
->data([['wjx', 21]]);
$filePath = $fileObject->output();
var_dump($filePath);
?>
--CLEAN--
<?php
@unlink(__DIR__ . '/18.xlsx');
?>
--EXPECT--
string(15) "./tests/18.xlsx"