我想只顯示文件名而不顯示網址。 我想替換文件名而不是'文檔'。在沒有網址的while循環中顯示文件名
while($fet=mysql_fetch_assoc($sql1))
{
$i=$i+1;
$next=$fet['f_name'];
echo '<h4><a class="astext" href="'.$next.'" title="'.$next.'" target="_blank" download>Document'.$i.'</a></h4>';
}
,如果我替換的單詞「文檔」,以$下一它顯示完整的URL作爲http://www.sample/txt/1/sample.doc我需要顯示了Sample.doc。
echo '<h4><a class="astext" href="'.$next.'" title="'.$next.'" target="_blank" download>"'.$next.'"</a></h4>';
http://stackoverflow.com/questions/3278120/extract-filename-from-path – epascarello
其工作的感謝 – user3386779