このコードで「引数が無効です」というエラーが発生します。修正を手伝ってください。
$sub1 = "sub1";
$sub2 = "sub2";
$td = "4";
foreach (glob("directory/".$sub1."/".$sub2."*.td".$td) as $filename) { //This is the line throwing the error
echo "$filename size " . filesize($filename) . "\n"; //This is right from php.net manual
}