0
我100%肯定,我有這條道路上的一個文件。圖像轉換爲Base64 PHP
我想我logo.png轉換爲base64
$imagedata = file_get_contents("/images/account/operator/logo.png");
$base64 = base64_encode($imagedata);
我一直得到
file_get_contents(/images/account/operator/logo.png): failed to open stream: No such file or directory
刪除前導'/',所以它讀取'圖片/帳號/運營/ logo.png' – Err