26 lines
485 B
Plaintext
26 lines
485 B
Plaintext
|
--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"
|