Skip to content
Advertisement

How to get directory name from file path using php

I am trying to get dir name from my file path: Currently below is my output:

JavaScript

and I want to get second last name which is (01_NINA-B1). What I am trying is:

JavaScript

when I add dirname above it displays nothing. What can I try next?

JavaScript

Advertisement

Answer

Is this drupal? from my research I found out that db_select is a drupal function.

Can you try this one? it will attempt to explode the path string and find the second last element, if none is found it will return “N/A”

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement