當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UploadFile::getExt方法代碼示例

本文整理匯總了PHP中UploadFile::getExt方法的典型用法代碼示例。如果您正苦於以下問題:PHP UploadFile::getExt方法的具體用法?PHP UploadFile::getExt怎麽用?PHP UploadFile::getExt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在UploadFile的用法示例。


在下文中一共展示了UploadFile::getExt方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: multiUpload

 static function multiUpload($files, $destination = null, $name = null)
 {
     $result = array();
     if (self::isMultiFile($files)) {
         $arrayFiles = self::normalizeArray($files);
         $i = 0;
         foreach ($arrayFiles as $value) {
             $tmp = new UploadFile($value);
             if ($destination !== null) {
                 $tmp->setDestination($destination);
             }
             if ($name !== null) {
                 $tmp->setName($name);
             }
             $tmp->upload();
             $cod = $tmp->getError();
             $errMsg = $tmp->getError_message();
             $arrayRes = array($cod, $errMsg, $tmp->getDestination(), $tmp->getName() . '.' . $tmp->getExt(), $value['name']);
             array_push($result, $arrayRes);
         }
     } else {
         $tmp = new UploadFile($files);
         if ($destination !== null) {
             $tmp->setDestination($destination);
         }
         if ($name !== null) {
             $tmp->setName($name);
         }
         $tmp->upload();
         $cod = $tmp->getError();
         $errMsg = $tmp->getError_message();
         $arrayRes = array($cod, $errMsg, $tmp->getDestination(), $tmp->getName() . '.' . $tmp->getExt(), $value['name']);
         array_push($result, $arrayRes);
     }
     return $result;
 }
開發者ID:jmroldan91,項目名稱:practica_sas,代碼行數:36,代碼來源:UploadFile.php

示例2: uploadFile

        $cancion = new uploadFile($_FILES['cancion']);
        $nombre_tipado = $privado . '_' . $usuario . '_' . $categoria . '_' . $cancion->getName();
        if ($cancion->getError() === UPLOAD_ERR_OK && $cancion->getExt() === "mp3") {
            $cancion->setName($nombre_tipado);
            if (!$cancion->upload()) {
                echo "<h2>Error: " . $cancion->getError_message() . "</h2>";
                echo $cancion;
            } else {
                echo "<h2>Error: " . $cancion->getError_message() . "</h2>";
            }
        } else {
            echo "<h2>No ha llegado ninguna cancion: " . $cancion->getError_message() . "</h2>";
        }
        if (isset($_FILES['img'])) {
            $imagen = new UploadFile($_FILES['img']);
            if ($imagen->getError() === UPLOAD_ERR_OK && $imagen->getExt() === "jpg") {
                $imagen->setName($nombre_tipado);
                if (!$imagen->upload()) {
                    echo "<h2>Error: " . $imagen->getError_message() . "</h2>";
                }
            } else {
                echo "<h2>Error: " . $imagen->getError_message() . "</h2>";
            }
        } else {
            echo "<h2>No ha subido ninguna imagen</h2>";
        }
    } else {
        echo "<h2>No ha subido ninguna canción</h2>";
    }
} else {
    echo "EEEEEEEEEEEEEEEEEEEE";
開發者ID:jmroldan91,項目名稱:podcast,代碼行數:31,代碼來源:subir.php


注:本文中的UploadFile::getExt方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。