私はコードを持っています:
foreach (glob('mov/$context.mov') as $filename){
$theData = file_get_contents($filename) or die("Unable to retrieve file data");
}
そのグロブ内に変数を追加する正しい方法ですか? $context
また、新しいファイルで、単語を $context に置き換えたいので、次のように記述しますか?
$context = "word"; // so it adds that word to the glob function when the script is included in a different file.