viest

Results 20 comments of viest

Hi @char101 What is the reason for the need for static build? Can PECL meet the demand?

I think this benefit may be small. Even if compiled statically, the binary file still depends on the external library, and you cannot directly copy the executable file and run...

Wow, this is great, are you interested in making your script public?

目前没有读取单元格的实际数据类型,所有有了类似于 `\Vtiful\Kernel\Excel::TYPE_TIMESTAMP` 的类型设置,类型读取呼声挺高,正在考虑加入项目中。

目前是返回所有工作表,还不支持忽略隐藏的工作表。 如果此功能投票超过五个,将会考虑加入。

```php $config = [ 'path' => './tests' ]; $fileObject = new \Vtiful\Kernel\Excel($config); $fileObject = $fileObject->fileName('tutorial.xlsx'); $filePath = $fileObject->header(['name', 'age']) ->data([ ['viest', 21], ['wjx', 21] ]) ->protection('password') ->output(); ```

@shinnlu 你指的是打开文件时的密码吗?当前是编辑时需要输入密码。

是否可以附上你的代码以及xlsx示例文件。