fopen()函数可以打开文件或URL。如果fopen()失败,则它可以返回false和失败错误。我们可以通过在函数名称前面添加“ @”来隐藏错误输出。
resource fopen ( string $filename , string $mode [, bool $use_include_path = FALSE [, resource $context ]] )
fopen()函数可以将文件名指定的命名资源绑定到流。
<?php $file = fopen("/PhpProject/sample.txt", "r"); $file = fopen("/PhpProject/index.php", "r"); $file = fopen("/PhpProject/sample1.txt", "wb"); ?>