Skip to content

Commit

Permalink
add logo file
Browse files Browse the repository at this point in the history
  • Loading branch information
viest committed Nov 24, 2017
1 parent efa62f7 commit 81be2e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 30 deletions.
35 changes: 5 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PHP-Excel-Writer
![php-excel](https://github.com/viest/php-excel-writer/blob/master/resource/logo.png)

#### 1、Install the dependencies

Expand All @@ -9,8 +9,7 @@ git clone https://github.com/jmcnamara/libxlsxwriter.git

cd libxlsxwriter

make
sudo make install
make && sudo make install
```

#### 2、Get the source code via Git
Expand All @@ -24,36 +23,12 @@ phpize

./configure

make

make install
make && make install
```

#### 3、Examples

```php
try {
$config = [
'path' => '/vagrant/'
];

$excel = new \Vtiful\Kernel\Excel($config);
#### 3、Documents

for($a = 0; $a < 200000; ++$a) {
$data[$a] = ['viest', 20];
}

$excel->fileName("test.xlsx")
->header(['name', 'age'])
->data([
['viest', 20]
])
->output();

} catch (\Exception $exception) {
//....
}
```
[Wiki](https://github.com/viest/php-excel-writer/wiki)

#### License

Expand Down
Binary file added resource/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 81be2e3

Please sign in to comment.