Skip to content

Commit 80c4223

Browse files
committed
Merge branch 'release/1.0.0'
2 parents 6365a90 + 2e5d284 commit 80c4223

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# php-xxhash
2+
3+
PHP extension to add support for the [xxhash](http://code.google.com/p/xxhash/) fast hashing algorithm. _xxhash_ is designed to be fast enough to use in real-time streaming applications.
4+
5+
## How To Install
6+
7+
```
8+
phpize
9+
./configure --enable-xxhash
10+
make
11+
sudo make install
12+
```
13+
14+
## How To Use
15+
16+
This extension adds one new PHP function:
17+
18+
```
19+
int xxhash32(string $data);
20+
```
21+
22+
It will checksum the string, and return the checksum.

0 commit comments

Comments
 (0)