# Resource 资源类型

资源是一种特殊变量，保存了到外部资源的一个引用。资源是通过专门的函数来建立和使用的。

```php
<?php

$handle = fopen(__DIR__ . '/example.php', 'a');

```

