LonghornPHP 2026

Voting

: eight plus zero?
(Example: nine)

The Note You're Voting On

Anonymous
15 years ago
Note this function is only available when PHP is compiled with libreadline, not if it is compiled with libedit.

<?php
if (function_exists('readline_list_history')) {
  $history = readline_list_history();
  // ...
} else {
  echo 'Not supported by the compiled library.'.PHP_EOL;
}
?>

<< Back to user notes page

To Top