Rumah > Artikel > pembangunan bahagian belakang > php fclose函数怎么用
php fclose函数用于关闭一个打开文件,其语法是fclose(file),参数file必需,规定要关闭的文件。
php fclose函数怎么用?
定义和用法
fclose() 函数关闭一个打开文件。
语法
fclose(file)
参数
file 必需。规定要关闭的文件。
说明
file 参数是一个文件指针。fclose() 函数关闭该指针指向的文件。
如果成功则返回 true,否则返回 false。
文件指针必须有效,并且是通过 fopen() 或 fsockopen() 成功打开的。
例子
<?php $file = fopen("test.txt","r"); //执行的一些代码... fclose($file); ?>
Atas ialah kandungan terperinci php fclose函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!