Php - Dosya Uzantısı Bulma

    Php - Dosya Uzantısı Bulma

    Php Dosya Uzantısı Bulma<?
    # @yns - 26 kasim 2005 , 05.26
    function uzantiBul($isim) {
    $dizi = explode('.',$isim);
    $eleman = count($dizi) -1;
    $uzanti = $dizi["$eleman"];
    echo $uzanti;
    // return $uzanti;
    }

    uzantiBul("asdsad.asd.php"); # çıktı : php

    ?>

[ Geri ] - [ Ana Sayfa ] - Bookmark and Share


travesti