file_append
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user