Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to check if register_argc_argv is enabled in my PHP application installer.

I wrote a code, but it's not working. It always saying it's disabled while it's enabled already in php.ini:

 //register_argc_argv
echo "<register_argc_argv>";
$ok=0;
$val="Disabled";
if(key_exists('PHP Core', $phpinfo))
{
    if(key_exists('register_argc_argv', $phpinfo['PHP Core']))
    {
            if(is_array($phpinfo['coreKey']['register_argc_argv']))
            {
                    if($phpinfo['coreKey']['register_argc_argv'][0]=="On")
                {
                    $ok=1;
                    $val="Enabled";
                }
            }
            else
            {
                if($phpinfo['coreKey']['register_argc_argv']=="On")
                {
                    $ok=1;
                    $val="Enabled";
                }
            }
    }
}
echo "<val>$val</val><ok>$ok</ok>";
echo "</register_argc_argv>\n";
share|improve this question

2 Answers

up vote 7 down vote accepted

You can use PHP's ini_get() method to determine if it is set.

<?php
  if(ini_get("register_argc_argv")) {
    echo "It's set! :)";
  } else {
    echo "It isn't set! :(";
  }
share|improve this answer
It do not works inside my application. It's a part of array. – Spacedust Feb 21 '12 at 17:34
Then I do not really understand what you are trying to do. If you are trying to figure out if the PHP configuration setting "register_argc_argv" is set then my code is correct. – jasonlfunk Feb 21 '12 at 21:16

What's wrong with ini_get('register_argc_argv');?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.