array IPS_GetScript (integer $ScriptID)
ScriptID | ID of the script |
The following information is available as key => value pairs:
|
This function returns an array containing information about the script with the ID ScriptID.
Since version 4.0 the functionality of version 3.4 and before can be accessed with the function "array IPS_GetScriptCompatibility( integer $ScriptID )".
// Since version 4.0 print_r(IPS_GetScript(46413)); /* Examplary output: Array ( [ScriptIsBroken] => [ScriptExecuted] => 1204933792 [ScriptFile] => 46413.ips.php [ScriptID] => 46413 [ScriptType] => 0 ) */ print_r(IPS_GetScriptCompatibility(46413)); /* Examplary output: Array ( [IsBroken] => [LastExecute] => 1204933792 [ScriptFile] => 46413.ips.php [ScriptID] => 46413 [ScriptType] => 0 ) */ // Until version 3.4 print_r(IPS_GetScript(46413)); /* Examplary output: Array ( [IsBroken] => [LastExecute] => 1204933792 [ScriptFile] => 46413.ips.php [ScriptID] => 46413 [ScriptType] => 0 ) */