Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

PHP substring question

  • 10-03-2006 04:17PM
    #1
    Registered Users, Registered Users 2 Posts: 648 ✭✭✭


    Hi

    if i have a string in php - http://www.thesite.com/image1.jpg
    how do i extract the image1.jpg from the string using the substring function or other.

    Thanks


Comments

  • Moderators, Politics Moderators, Paid Member Posts: 44,085 Mod ✭✭✭✭Seth Brundle


    You could replace your substring with nothing
    http://ie.php.net/str_replace
    or are you trying to get the path without knowing the filename?


  • Registered Users, Registered Users 2 Posts: 648 ✭✭✭ChicoMendez


    kbannon wrote:
    You could replace your substring with nothing
    http://ie.php.net/str_replace
    or are you trying to get the path without knowing the filename?

    ya i wont necessarily know the name in advance... i need to go from the end of teh string to the first '/' and chop that off.

    Thanks


  • Registered Users, Registered Users 2 Posts: 2,204 ✭✭✭Serbian


    It would probably be better to use RegEx or something but here is the quick and nasty way of doing it:

    [php]<?php
    function get_file_name ($string) {
    $string = explode("/", $string);
    return $string[sizeof($string)-1];
    }

    $string = "http://www.thesite.com/image1.jpg";
    $filename = get_file_name($string);
    ?>
    [/php]


  • Registered Users, Registered Users 2 Posts: 648 ✭✭✭ChicoMendez


    tnx lads

    Serbian ur a mastermind!


  • Registered Users, Registered Users 2 Posts: 6,655 ✭✭✭daymobrew


    You could use the built in basename function.


  • Advertisement
Advertisement