當python抓到的資料要傳到php做處理的時候,可以這樣做
python部分:正常編輯就可以了
#!/usr/bin/python # -*- coding: utf-8 -*- import os print ("ssd") print "中文"
第二行是註解中文時一定要打的,不然會錯誤
php部分:
<?php header("Content-type: text/html; charset=utf-8"); $command2 = escapeshellcmd('/xampp/htdocs/video/webcrowler/test2.py'); $output2 = shell_exec($command2); echo $output2; ?>
escapeshellcmd:可以透過系統指令去抓寫好的python
shell_exec:再交給這個函示存成純文字,再用echo秀出來
結果:
前面講到用爬蟲抓程式碼,這篇就可以把抓到的東西做整理和顯示