PHP ftp上傳檔案

weixin_34249678發表於2018-10-29

php程式碼

$shellCommand = "sh 路徑.sh 第一個引數  第二個引數“;
$res = exec($shellCommand);

shell 指令碼

#!/bin/bash

file=$1 #第一個引數
upload_ip=$2 #第二個引數

F="sendftp"
User="user ftp賬戶"
Pwd="ftp密碼"
echo "open $upload_ip" > ${F}
echo "$User $Pwd" >> ${F}
echo "binary" >> ${F}
echo "put 路徑+$file" >> ${F}
echo "bye" >> ${F}
/usr/bin/ftp -i -n < ${F}

相關文章