0
上傳圖片時,vtiger將前綴添加到文件名。在Vtiger中刪除上傳圖片的前綴
Befor upload: IMG_NAME.png.
After upload: 26540_IMG_NAME.png.
我該如何刪除'26540_'
前綴?
上傳圖片時,vtiger將前綴添加到文件名。在Vtiger中刪除上傳圖片的前綴
Befor upload: IMG_NAME.png.
After upload: 26540_IMG_NAME.png.
我該如何刪除'26540_'
前綴?
不建議改變存儲文件名稱的標準。因爲前綴('26540_' in your case
)是在文件名之前添加的唯一標識符。如果我們上傳具有相同名稱的相同文件,vTiger將視爲另一個文件。
但還是如果你不想前綴然後添加自定義代碼按如下:
\data\CRMEntity.php
function uploadAndSaveFile(
註釋行
$upload_status = move_uploaded_file($filetmp_name, $upload_file_path .$current_id . "_" . $binFile);
添加(已刪除$ current_id)
$upload_status = move_uploaded_file($filetmp_name, $upload_file_path . $binFile);
保存腳本並進行測試。乾杯!