使用php将字符串与文件夹中的文件名匹配

时间:2016-09-03 12:17:29

标签: php file

嗨我想知道是否可以使用php将字符串与文件夹中的文件匹配。

例如,我有一个名为上传的文件夹,在里面,我有不同的文件,例如 image1.png image2.jpg doc1.doc doc2.pdf

假设我的php文件中有这个代码:

import numpy as np
import seaborn as sns

x = np.random.randn(200)
sns.distplot(x,
             hist_kws=dict(cumulative=True),
             kde_kws=dict(cumulative=True))

谢谢!

1 个答案:

答案 0 :(得分:0)

我认为这个应该做你想做的事情

$dir = "uploads";//the path to your folder
if(file_exists($dir)){
  if ($dh = opendir($dir)) {
              while (($file = readdir($dh)) !== false) {
                  if (!is_dir($file)) {

                    if ($file == "image2"){
                        // your code
                    }
                }
              }
           }
        }