php-8.0.30-src/ext/readline
hailin 69b1ab3c3c first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
..
tests first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
CREDITS first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
README.md first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
config.m4 first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
config.w32 first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
php_readline.h first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
readline.c first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
readline.stub.php first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
readline_arginfo.h first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
readline_cli.c first commit, version 8.0.30 2025-07-30 08:40:14 +08:00
readline_cli.h first commit, version 8.0.30 2025-07-30 08:40:14 +08:00

README.md

readline

Provides generic line editing, history, and tokenization functions. See https://www.php.net/manual/en/book.readline.php

Implementation Details

C variables starting with rl_* are declared by the readline library (or are macros referring to variables from the libedit library). See http://web.mit.edu/gnu/doc/html/rlman_2.html

This should only be used in the CLI SAPI. Historically, the code lived in sapi/cli, but many distributions build readline as a shared extension. Therefore, that code was split into ext/readline so that this can dynamically be loaded. With other SAPIs, readline is/should be disabled.

readline_cli.c implements most of the interactive shell(php -a).