Project

General

Profile

$freadex » History » Version 1

Per Amundsen, 12/01/2021 11:42 PM

1 1 Per Amundsen
_Added in 4.2_
2
3
*$freadex(name|N)*
4
5
Returns the rest of the content from an open file starting from the current position.
6
7
*Parameters*
8
9
name|N - Name of the file or the Nth file.
10
11
*Example*
12
13
<pre>
14
; Open a file.
15
/fopen Example $adiircini
16
17
; Read the next line.
18
//echo -ag The content of adiircini is: $freadex(Example)
19
20
; Close the file.
21
/fclose Example
22
</pre>