?
このドキュメントでは、 php中國語ネットマニュアル リリース
AtEndOfLine 屬性返回一個(gè)布爾值。True 指示文件指針緊靠 TextStream 文件中行末標(biāo)記之前,否則返回 False。
注意:該屬性僅工作于以只讀方式打開的 TextStream 對象。
TextStreamObject.AtEndOfLine
<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt")
f.write("Hello World!")
f.close
set t=fs.OpenTextFile("c:\test.txt",1,false)
do while t.AtEndOfLine<>true
??x=t.Read(1)
loop
t.close
Response.Write("The last character is: " & x)
%>
輸出:
The last character of the first line in the text file is: !