1. 单选题

test目录下的文件夹如下:

//climg.mukewang.com/5966de260001855301700077.jpg

阅读下列代码,输出正确的是()(选择一项)

//climg.mukewang.com/5966de660001fa9305000418.jpg

 

 

 

A
Array(
       [file]=>Array(
           [0] => test\2.txt
        )
       [dir]=>(
           [0] => test\c
      )
)




B
Array(
       [file]=>Array(
           [0] =>2.txt
        )
       [dir]=>(
           [0] => test\c
      )
   )


C
Array(
       [file]=>Array(
           [0] =>2.txt
        )
       [dir]=>(
           [0] =>c
      )
   )


D
Array(
       [file]=>Array(
           [0] => test\2.txt
        )
      [dir]=>(
        [0] => c
      )
   )

A