homepage/source/_articles/php-serialization.md

14 lines
271 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Сериализация в PHP
---
# Сериализация в PHP
Не используйте стандартную сериализацию для долговременного хранения.
Не делайте так:
```php
serialize($a);
```