php-src/ext/readline
2021-09-06 17:14:52 +02:00
..
tests Migrate more SKIPIF -> EXTENSIONS (#7139) 2021-06-11 12:58:44 +02:00
config.m4 Add -Wstrict-prototypes compiler warning 2021-05-12 19:02:48 +01:00
config.w32 add readline_list_history with libedit >= 3.1 and mingweditline 2019-02-19 08:51:56 +01:00
CREDITS
php_readline.h Update http->https in license (#6945) 2021-05-06 12:16:35 +02:00
readline_arginfo.h Add more specific array return type hints for various extensions - part 4 (#7469) 2021-09-06 17:14:52 +02:00
readline_cli.c Fix bug #81280 refuse to allow unicode chars in prompts 2021-08-11 10:35:00 +02:00
readline_cli.h Update http->https in license (#6945) 2021-05-06 12:16:35 +02:00
readline.c Fixed some spaces used instead of tabs 2021-06-29 11:30:26 +02:00
readline.stub.php Add more specific array return type hints for various extensions - part 4 (#7469) 2021-09-06 17:14:52 +02:00
README.md Allow overriding completion in auto_prepend_file 2020-08-01 11:39:08 -04:00

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).