diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-06 15:03:03 +0100 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-06 16:17:38 +0100 |
commit | 1e1b2f778387bdbd0a22a06e94b1e145565b43dd (patch) | |
tree | e12370fff51cdcf9653c7e66c68e9aa3deae05ed | |
parent | 4b7a36ea1932cfd2245560fa9949dc32fe2d2fc7 (diff) |
console.php: fix up the help and include a handy cut-n-paste'able example
-rwxr-xr-x | scripts/console.php | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/scripts/console.php b/scripts/console.php index e65529a8d..f1b089a7c 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -110,12 +110,21 @@ function readline_emulation($prompt) function console_help() { print "Welcome to StatusNet's interactive PHP console!\n"; - print "Type some PHP code and it'll run!\n"; + print "Type some PHP code and it'll execute...\n"; print "\n"; - print "Note that PHP is cranky and you can easily kill your session.\n"; + print "Hint: return a value of any time to output it via var_export():\n"; + print " \$profile = new Profile();\n"; + print " \$profile->find();\n"; + print " \$profile->fetch();\n"; + print " return \$profile;\n"; + print "\n"; + print "Note that PHP is cranky and you can easily kill your session by mistyping.\n"; + print "\n"; + print "Type ctrl+D or enter 'exit' to exit.\n"; } +print "StatusNet interactive PHP console... type ctrl+D or enter 'exit' to exit.\n"; $prompt = common_config('site', 'name') . '> '; while (!feof(STDIN)) { $line = read_input_line($prompt); @@ -124,14 +133,14 @@ while (!feof(STDIN)) { break; } elseif ($line !== '') { try { - if ($line == 'exit') { + if (trim($line) == 'exit') { break; - } elseif ($line == 'help') { + } elseif (trim($line) == 'help') { console_help(); continue; } - // Let's do this + // Let's do this! $result = eval($line); if ($result === false) { // parse error |