Current location: Hot Scripts Forums » Programming Languages » PHP » Get image name


Get image name

Reply
  #1 (permalink)  
Old 11-20-04, 07:15 AM
FiRe FiRe is offline
Code Guru
 
Join Date: Oct 2004
Location: UK
Posts: 801
Thanks: 0
Thanked 0 Times in 0 Posts
Get image name

I want to get the full image name and delete the users path!

For example:
C:\Documents and Settings\image.gif

Will return just image.gif

I thought image_type_to_extension(); but that will only return .gif...
__________________
Alexa Share <-- Trade virtual shares in websites with this online game.

codR.us <-- Submit and vote for your favorite code snippets with codR.us.

XEWeb.net <-- The ultimate PHP resource network.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 11-20-04, 07:50 AM
Eclipse's Avatar
Eclipse Eclipse is offline
Coding Addict
 
Join Date: May 2004
Location: Long Island, New York
Posts: 356
Thanks: 0
Thanked 0 Times in 0 Posts
try this:
PHP Code:

$var "C:\Documents and Settings\image.gif";

$name explode("\",$var);
$x = count($name) - 1;
$name = $name[$x];
echo(
$name); //would print "image.gif
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 11-20-04, 08:18 AM
Acecool's Avatar
Acecool Acecool is offline
Aspiring Coder
 
Join Date: Nov 2003
Posts: 506
Thanks: 0
Thanked 0 Times in 0 Posts
$image_path = "C:\Documents and Settings\image.gif";
echo basename($image_path);
__________________
Check Acecoolco.com for PHP Tutorials, and other tuts
If you plan on contacting me, please read this: Legal Terms & Conditions
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
searching image nurqeen PHP 4 07-09-05 10:35 AM
Image upload and if / else mdhall PHP 4 11-14-04 04:12 PM
Help with image on form... Adrianaa03 JavaScript 1 10-06-04 08:38 AM
how to draw an image inside a table? davidklonski HTML/XHTML/XML 2 07-06-04 11:27 AM
need help with upload image and getting image name to db mikewooten PHP 3 05-14-04 05:52 PM


All times are GMT -5. The time now is 12:03 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.