i have this text i need to change this text like etc ( i have 1000 and more text. too hard to make by hends) is there any php function that help me. ? first of all need to erase http://www.site.com/file/NUMBERS/ thanks.
Hi. Here is the code: $url = trim($url); $pos_start = strrpos($url, '/') + 1; $pos_finish = strrpos($url, '.'); $text = substr($url, $pos_start, $pos_finish - $pos_start); PHP: