ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 分享 分享一個多文件上傳,根據文件類型顯示,自定義函數 0 0
自牧 免費用戶 2023-03-17 22:35:35 私信

分享一個多文件上傳,根據文件類型顯示,自定義函數

如果文件是鏈接也可以判斷

函數上傳至custom.php

// 檢查附件類型

function checkAttachmentType($filename) {

// 獲取附件擴展名

$extension = pathinfo($filename, PATHINFO_EXTENSION);

// 判斷附件類型

if (in_array(strtolower($extension), array('jpg', 'jpeg', 'png'))) {

return 'image';

} elseif (in_array(strtolower($extension), array('mp3'))) {

return 'audio';

} elseif (in_array(strtolower($extension), array('mp4'))) {

return 'video';

} elseif (in_array(strtolower($extension), array('ppt', 'pptx'))) {

return 'ppt';

} elseif (in_array(strtolower($extension), array('pdf'))) {

return 'pdf';

} else {

return '';

}

}

// 顯示附件

function showAttachment($filename) {

$attachmentType = checkAttachmentType($filename);

switch ($attachmentType) {

case 'image':

echo '<img src="' . $filename . '" alt="Image">';

break;

case 'audio':

echo '<audio src="' . $filename . '" controls></audio>';

break;

case 'video':

echo '<video src="' . $filename . '" controls></video>';

break;

case 'ppt':

echo '<iframe src="https://view.officeapps.live.com/op/view.aspx?src=' . $filename . '" width="100%" height="500px" frameborder="0"></iframe>';

break;

case 'pdf':

echo '<embed src="' . $filename . '" type="application/pdf" width="100%" height="500px">';

break;

default:

echo 'Invalid attachment type!';

break;

}

}

模板調用

{php $filename = dr_get_file($c.file);}

{php showAttachment($filename);}

解決方案