Video_exists - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Checks whether or not a video exists and returns the result.
Parameters
Parameter | Data Type | Description |
---|---|---|
id | integer | index of the video |
Return Values
boolean: Returns whether or not the given video exists.
Example Call
// demonstrates checking if a video exists or not
if (video_exists(myvid)) {
// video does exist
} else {
// video does not exist
}
NOTOC