Skip to content

Commit dac7cf9

Browse files
author
wxxiong6
authored
Update README.md
1 parent 7a57bb8 commit dac7cf9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,20 @@
11
# php-ext-arraylist
22
php扩展ArrayList
3+
4+
## linux mac 环境下编译安装
5+
```shell
6+
phpize
7+
./configure --enable-arraylist
8+
make
9+
make install
10+
```
11+
12+
支持函数
13+
```php
14+
$ret = new ArrayList();
15+
$ret->add(1);
16+
$ret->get(0);
17+
$ret->count();
18+
$ret->getSize();
19+
$res->toArray();
20+
```

0 commit comments

Comments
 (0)