PHP 8.1.28 Released!

readline_info

(PHP 4, PHP 5, PHP 7, PHP 8)

readline_infoGets/sets various internal readline variables

Açıklama

readline_info(?string $var_name = null, int|string|bool|null $value = null): mixed

Gets or sets various internal readline variables.

Bağımsız Değişkenler

var_name

A variable name.

value

If provided, this will be the new value of the setting.

Dönen Değerler

If called with no parameters, this function returns an array of values for all the settings readline uses. The elements will be indexed by the following values: done, end, erase_empty_line, library_version, line_buffer, mark, pending_input, point, prompt, readline_name, and terminal_name. The array will only contain those elements which are supported by the library used to built the readline extension.

If called with one or two parameters, the old value is returned.

Sürüm Bilgisi

Sürüm: Açıklama
8.0.0 var_name and value are nullable now.
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top