UNPKG
manual-php
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
PHP 手册
github.com/kuriv/manual-php
kuriv/manual-php
manual-php
/
docs
/
语言参考
/
类型
/
Resource 资源类型.md
12 lines
(6 loc)
•
221 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
# Resource 资源类型
资源是一种特殊变量,保存了到外部资源的一个引用。资源是通过专门的函数来建立和使用的。 ```php
<?php
$handle
=
fopen
(
__DIR__
.
'/example.php'
,
'a'
); ```