Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Geeker Wang committed Nov 15, 2015
1 parent b9e8917 commit cf4dd4e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion 数据序列化/serialize/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ serialize — 产生一个可存储的值的表示。

## 函数原型

```
```php
string serialize ( mixed $value )

```
Expand Down Expand Up @@ -69,6 +69,14 @@ serialize 并不适合存储在数据库中,因为这阻止了应用的可以
serialize 更适合用在缓存文件(cache file)来包含一些数据操作的结果

## unserialize

```php
mixed unserialize ( string $str )
```

unserialize() 对单一的已序列化的变量进行操作,将其转换回 PHP 的值。




Expand Down

0 comments on commit cf4dd4e

Please sign in to comment.