Blogger Information
Blog 8
fans 0
comment 0
visits 11700
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php指针
BlogofDaniel
Original
4090 people have browsed it

数组的指针操作:

current();返回当前指针所在的位置。

next():将指针指向下一个元素。

prev():指向上一个元素

end():指向最后一个元素

reset():重置指针

each():返回当前元素的指针指向的信息,并是指针顺次后移一位


文件指针操作:

rewind(资源类型) :重置指针的位置,将指针指向文件的开头。

feof(资源类型):该函数判断文件指针是否指向文件末尾,是,则返回true;否则false;

ftell(资源类型):返回所在位置

fseek(文件资源类型,位移(int),位移方式(int)):位移指针

位移:

正数:移动后为位置

负数:

1.在没有第三个参数时,负数不起作用,保留当前的位置(SEEK_SET)

2.有第三个参数时, (SEEK_SET)同1

(SEEK_CUR)位移+当前指针

(SEEK_END)末尾位置+位移

位移方式:

1.SEEK_SET : 以文件开始为参照点(0)进行位移,文件指针指向位置是:0+第二个参数,如果0+第二个参数是<0,文件指针返回位移前的 位置(默认)

2.SEEK_CUR :以当前文件指针的位置为参照点,进行位移,文件指针指向的位置是:当前指针位置+第二个参数。如果 当前指针位置 +第二个参数<0,文件指针指向位移前的位置

3.SEEK_END :以文件的结尾作为参照点,进行位移。文件指针指向的位置是:filesize($file)+第二个参数,如果filesize($file)+第二个参数 <0,文件指针指向位移前的位置


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post