1. 程式人生 > >centos7+php+mysql+python將爬蟲結果顯示到網頁上

centos7+php+mysql+python將爬蟲結果顯示到網頁上

php執行控制檯指令

$output = shell_exec('');

新增apache許可權

~ visudc
root    ALL=(ALL)       ALL
apache  ALL=(ALL) NOPASSWD: ALL

關閉selinux

setenforce 0

shell_exec使用python3的路徑

$output = shell_exec('sudo /.../python');

python防編碼錯誤

sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8")

解決無頭瀏覽器路徑問題

driver = webdriver.PhantomJS(executable_path='...\phantomjs')

php-mysql搜尋字串要加引號

'............... word = \''.$word.'\'';