芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/libraries.5/src/Application/CLI/CliInput.php
* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Application\CLI; \defined('JPATH_PLATFORM') or die; /** * Class CliInput * * @since 4.0.0 * @deprecated 5.0 Use the `joomla/console` package instead */ class CliInput { /** * Get a value from standard input. * * @return string The input string from standard input. * * @codeCoverageIgnore * @since 4.0.0 */ public function in() { return rtrim(fread(STDIN, 8192), "\n\r"); } }