Jump to content

Totally noob question from a total noob


Aggg

Recommended Posts

My friend helped me to write this code show a random .swf-file:

 

 

function file_extension($filename)

{

$tmparr = pathinfo($filename);

return $tmparr['extension'];

}

 

 

function search_swf($path)

{

$dir = @opendir($path);

 

$swf_files = array();

 

while ($file  =  readdir($dir))

      {

      if (file_extension($file) == "swf")

              {

              array_push($swf_files,$file);

              }

      }

 

closedir($dir);

 

return $swf_files;

}

 

But I didn't quite understand, how can I get it to pick a file from directory /flash.. I think I need to write something after the $path-thing. But what?

Link to comment
https://forums.phpfreaks.com/topic/77301-totally-noob-question-from-a-total-noob/
Share on other sites

101 on functions -

 

The following is the DEFINITION of a function :

function mySpecialFunction($myVariable) {
  // Using $myVariable.
  echo $myVariable;
}

 

The following is the USE of the function we defined :

mySpecialFunction("my name is Joe");

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.