AndreLuiz
(Getting the hang of it)
2017-08-14 05:54 AM
ReadAll()

Hello readall() would serve to grab all text from a file and play directly into the output.

The standard would be this here.
 Code:
$handle = freefilehandle()
$open($handle, "file.txt")
while (@error = 0)
$texto = $texto + readline($handle) + @crlf
loop


I wanted one more option.
 Code:
$handle = freefilehandle()
$open($handle, "file.txt")
$texto  = ReadAll($handle, @crlf)


AndreLuiz
(Getting the hang of it)
2017-08-16 10:55 PM
Re: ReadAll()

Already solved this, can someone withdraw this topic?