黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

PHP rewind() 函數(shù)

PHP rewind() 函數(shù)

PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊

定義和用法

rewind() 函數(shù)將文件指針的位置倒回文件的開頭。

如果成功,該函數(shù)返回 TRUE。如果失敗,則返回 FALSE。

語法

rewind(file)

參數(shù) 描述
file 必需。規(guī)定已打開的文件。

實例

<?php
$file = fopen("test.txt","r");

//Change position of file pointer
fseek($file,"15");

//Set file pointer to 0
rewind($file);

fclose($file);
?>

PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊
相關(guān)文章