News Feed
Jobs Feed
Sections




News Archive
EdFinkler's Blog:
Determining if a function is *really* available in PHP
March 29, 2007 @ 07:02:14

In this new post to his blog, Ed Finkler talks about some tests he worked up to discover if a function is available in PHP or not while working on the latest version of PHPSecInfo).

is_callable() will return TRUE even if a function has been disabled in php.ini with disabled_functions (which, in my mind, is contrary to what 'is_callable' implies). function_exists() will return FALSE if the function is disabled in php.ini, but will return TRUE if the function is being blocked by safe_mode.

So, to help counter these issues, he checks first to see if the exec('id') option works - checking it work function_exists and the setting for safe_mode (disabled). If it doesn't pass, he moves on to the posix_* function and tests then with a function_exists.

0 comments voice your opinion now!
function available exec posix iscallable functionexists function available exec posix iscallable functionexists


blog comments powered by Disqus

Similar Posts

SitePoint PHP Blog: Introducing php-tracer-weaver

OpenIdeasCompany.com: Redeclaring native PHP functions

Matthew Turland's Blog: Environmental Awareness Quickie

DevShed: The Call Magic Function in PHP 5

Jani Hartikainen's Blog: Closures coming in PHP 5.3 and thats a Good Thing


Community Events











Don't see your event here?
Let us know!


series language opinion zendframework2 object interview release framework introduction community example podcast code unittest tool testing conference composer development functional

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework