ini_get

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Gets the value of a configuration option
<?php ini_get(string $option): string|false
<?php     protected function getPostMaxSize()

    {

        if (is_numeric($postMaxSize = ini_get('post_max_size'))) {

            return (int) $postMaxSize;

        }
<?php         if (ini_get('open_basedir') === '') {

            $openBaseDir = windows_os() ? explode('\\', __DIR__)[0].'\\'.';'.sys_get_temp_dir() : '/';

            $iniSet = ini_set(

                'open_basedir',
<?php         $this->createReturnTypeNeededForPipelinedFunction();

        $expectedTotalRowCount = (int) ini_get('oci8.default_prefetch') + 10;

        $this->createOrReplacePipelinedFunction($expectedTotalRowCount);
<?php         if (ini_get('short_open_tag')) {

            $text = str_replace('<?', '&lt;?', $text);

        }
<?php             \T_OPEN_TAG_WITH_ECHO,

        ];



        $this->shortOpenTags = (bool) \ini_get('short_open_tag');

        if ($this->shortOpenTags === false) {

            $targets[] = \T_INLINE_HTML;

        } else {
<?php     {

        if (\version_compare(\PHP_VERSION_ID, '70000', '<') === true) {


            $this->aspTags = (bool) \ini_get('asp_tags');

        }



        return [
<?php         if (\version_compare(\PHP_VERSION_ID, '70000', '<')) {


            self::$aspTags = (bool) \ini_get('asp_tags');

        }

    }
<?php     public function setApcuPrefix($apcuPrefix)

    {

        $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;

    }
<?php             $errors['iconv_mbstring'] = true;

        }



        if (!filter_var(ini_get('allow_url_fopen'), FILTER_VALIDATE_BOOLEAN)) {

            $errors['allow_url_fopen'] = true;

        }
<?php             $warnings['openssl_version'] = true;

        }



        if (!defined('HHVM_VERSION') && !extension_loaded('apcu') && filter_var(ini_get('apc.enable_cli'), FILTER_VALIDATE_BOOLEAN)) {

            $warnings['apc_cli'] = true;

        }
<?php             }

        }



        if (filter_var(ini_get('xdebug.profiler_enabled'), FILTER_VALIDATE_BOOLEAN)) {

            $warnings['xdebug_profile'] = true;

        } elseif (XdebugHandler::isXdebugActive()) {

            $warnings['xdebug_loaded'] = true;
<?php     private function checkConnectivity()

    {

        if (!ini_get('allow_url_fopen')) {

            return '<info>Skipped because allow_url_fopen is missing.</info>';

        }
<?php     protected function validatePhar($pharFile, &$error)

    {

        if (ini_get('phar.readonly')) {

            return true;

        }
<?php                 !Platform::isWindows()

                && function_exists('exec')

                && !Platform::getEnv('COMPOSER_ALLOW_SUPERUSER')

                && (ini_get('open_basedir') || !file_exists('/.dockerenv'))

            ) {

                if (function_exists('posix_getuid') && posix_getuid() === 0) {

                    if ($commandName !== 'self-update' && $commandName !== 'selfupdate') {
<?php         }

        $phpArgs = $finder->findArguments();

        $phpArgs = $phpArgs ? ' ' . implode(' ', $phpArgs) : '';

        $allowUrlFOpenFlag = ' -d allow_url_fopen=' . ProcessExecutor::escape(ini_get('allow_url_fopen'));

        $disableFunctionsFlag = ' -d disable_functions=' . ProcessExecutor::escape(ini_get('disable_functions'));

        $memoryLimitFlag = ' -d memory_limit=' . ProcessExecutor::escape(ini_get('memory_limit'));