我正在尝试从我的文件路径中获取目录名称:目前以下为我的输出:
Array
(
[path] => \documentLibrary\work\marketingProcess\BusinessMarketing\Design\Images\02_Product_Images\04_SHORT-RANGE\NINA\01_NINA-B1\source_WEB
)
我想得到第二个姓氏,即(01_NINA-B1)。我正在尝试的是:
echo "<pre>".print_r(dirname($results),true)."</pre>"; die;
当我在上面添加目录名称时,它什么也不显示。接下来我可以尝试什么?
$query = db_select('network_drive','networkd');
$query
->fields('networkd', array('path'))
->condition('ndid',$networkdriveid,'=')
->orderBy('networkd.ndid');
$results = $query->execute();
echo "<pre>".print_r(dirname($results['path']),true)."</pre>"; die;
肥皂起泡泡
慕森卡