Jump to content

Choosing Either Jpg File Or Swf File


phil2564

Recommended Posts

Below the block of code gets the (a.jpg) image out of the models folder so it can be displayed. I would like to be able to have a (a.swf) file in the folder also and if the(.swf) is in the folder it will use that file instead of the (.jpg).

 

 

$fn = $gn . "/a.jpg";
if (file_exists($fn)) {
   $ja = "|csaction name=\"D61562B272\" class=\"Set Image URL\" type=\"onevent\" val0=\"";
   $ja = $ja . $gn . "\" val1=\"" . $gn . "/a.jpg\">";
   $j1 = $j1 . "CSAct[/*CMP*/ 'D61562B272'] = new Array(CSSetImageURL,/*CMP*/ '";
   $j1 = $j1 . $gn . "',/*URL*/ '" . $fn . "')\n\r";

}

Link to comment
https://forums.phpfreaks.com/topic/271786-choosing-either-jpg-file-or-swf-file/
Share on other sites

You could do like this:

 


$swf = 'some.swf';
$image = 'some.jpg';

if (file_exists($swf)) {
// Show swf
}

else if (file_exists($image)) {
// Show image
}

else {
// Nothing to show
}

 

To break down what andy posted this basically states: if the .swf file exists, then you write your code to show it. If it does not exist but the image does, then you write your code to show that. If neither exists do whatever. Either way you will have to check which exists first before doing anything

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.