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:

  1. you can search function: http://id1.php.net/manual-lookup.php?pattern=getscenariopath if no result, must user-defined function.
  2. you can check using

     if (function_exists('getscenariopath')) {      ...   } else {      ...   } 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -