0
在提交聯繫表格我提交後掛鉤。上傳到聯繫人表單中的文件需要發送到SOAP服務。爲了收到filedata我做到以下幾點:(WordPress的)聯繫表7 - file_get_contents不起作用
Returns empty:
$base64string = base64_encode(file_get_contents($_FILES["cv"]["tmp_name"]));
我的$ _FILES不是空的,所以文件就位。 file_get_contents 總是返回一個空字符串。同時,allow_url_fopen選項是「開」
當我測試這一個單一的PHP文件(沒有WordPress的),它返回的字符串BASE_64所以它必須做一些事情的WordPress:
Working code:
<form action="" method="POST" enctype="multipart/form-data">
<input type="file" name="cv">
<input type="submit" name="formsubmit">
</form>
<?
if(isset($_POST['formsubmit'])){
print_r(base64_encode(file_get_contents($_FILES["cv"]["tmp_name"])));
}
任何想法?