php - What is getScenarioPath and getScenarionResourceFolder? -
i looking @ someones project , keep getting line:
$resource_folder = getscenarioresourcefolder(getscenariopath($scenario));
i cannot find function implemented under 2 names - getscenarioresourcefolder , getscenariopath. started wandering maybe name scenario has $scenario variable being in functions. know might sound dumb, not know else think.
does know these function?
i know these:
- you can search function: http://id1.php.net/manual-lookup.php?pattern=getscenariopath if no result, must user-defined function.
you can check using
if (function_exists('getscenariopath')) { ... } else { ... }
Comments
Post a Comment