--TEST-- Check for vtiful presence --SKIPIF-- --FILE-- './tests' ]; $fileObject = new \Vtiful\Kernel\Excel($config); $fileObject = $fileObject->fileName('format_font.xlsx'); $fileHandle = $fileObject->getHandle(); $format = new \Vtiful\Kernel\Format($fileHandle); $fontStyle = $format->font('Calibri')->toResource(); // Local Test // $fontStyle = $format->font('华文楷体')->toResource(); $filePath = $fileObject->header(['name', 'age']) ->data([ ['viest', 21], ['wjx', 21] ]) ->setRow('A1', 50, $fontStyle) ->output(); var_dump($filePath); ?> --CLEAN-- --EXPECT-- string(24) "./tests/format_font.xlsx"