Is there an way in php to use the ftp function te echo all directory starting with '20110508'?
So it wil list: '20110508 abcde' '20110508 fghi' '20110508 jklm'开发者_如何学Go etc.
you can use ftp_nlist function to retrieve file list of specified diretory, then fetch through this array and filter items by comparing with desired mask 
e.g. 
$contents = ftp_nlist($conn_id, ".");
foreach($contents as $f)
  if (substr($f, 0, 8)=='20110508') {
    echo $f;
  }
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论