2017-09-03 13:59:49 +02:00
|
|
|
//
|
|
|
|
// This file is auto-generated by script docgen.py.
|
|
|
|
// DO NOT EDIT BY HAND!
|
|
|
|
//
|
|
|
|
[[command_php_php]]
|
|
|
|
* `+php+`: list/load/unload scripts
|
|
|
|
|
|
|
|
----
|
|
|
|
/php list|listfull [<name>]
|
|
|
|
load [-q] <filename>
|
|
|
|
autoload
|
|
|
|
reload|unload [-q] [<name>]
|
2018-01-06 13:58:26 +01:00
|
|
|
eval [-o|-oc] <code>
|
2017-12-23 20:32:03 +01:00
|
|
|
version
|
2017-09-03 13:59:49 +02:00
|
|
|
|
|
|
|
list: list loaded scripts
|
|
|
|
listfull: list loaded scripts (verbose)
|
|
|
|
load: load a script
|
|
|
|
autoload: load all scripts in "autoload" directory
|
|
|
|
reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory)
|
|
|
|
unload: unload a script (if no name given, unload all scripts)
|
|
|
|
filename: script (file) to load
|
|
|
|
-q: quiet mode: do not display messages
|
2018-01-06 13:58:26 +01:00
|
|
|
name: a script name (name used in call to "register" function)
|
|
|
|
eval: evaluate source code and display result on current buffer
|
|
|
|
-o: send evaluation result to the buffer without executing commands
|
|
|
|
-oc: send evaluation result to the buffer and execute commands
|
|
|
|
code: source code to evaluate
|
2017-12-23 20:32:03 +01:00
|
|
|
version: display the version of interpreter used
|
2017-09-03 13:59:49 +02:00
|
|
|
|
|
|
|
Without argument, this command lists all loaded scripts.
|
|
|
|
----
|