file_append

This commit is contained in:
udo
2022-01-21 00:06:52 +00:00
parent 5f3ae65b17
commit dd14dbb6e3
7 changed files with 72 additions and 0 deletions
+2
View File
@@ -3,6 +3,7 @@ System Functions
basename
dirname
expand_path
file_append
file_exists
file_get_contents
file_mtime
@@ -10,6 +11,7 @@ file_put_contents
get_cwd
ls
mkdir
print
set_cwd
shell_escape
shell_exec
+12
View File
@@ -0,0 +1,12 @@
:sig
void file_append(String file_name, ...val)
:params
file_name : file name of file that should be written to
...val : one or more values that should be written into the file
:desc
Opens or creates a given file and appends data to it.
:see
>sys
+11
View File
@@ -0,0 +1,11 @@
:sig
void print(...val)
:params
...val : one or more values that should be output
:desc
Appends data to the current request's output stream.
:see
>sys