このスクリプトを使用して、localhost の php で python スクリプトを実行しましたが、numpy や cv2 などのモジュールを読み取りません。
PHPを介して、モジュールを読み取っていないときに通常のエラーが発生しました:
import numpy as np ImportError: No module named numpy
python ファイルを python フォルダ C:\Python27 に移動しましたが、何も変わりません! Python Shell を使用すると動作します。
多分それはapacheの問題ですか?
ここでは、python コード:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Script Python Example
import time
import sys
import numpy as np
print "Initializing Python Script"
print "The passed arguments are ", sys.argv
print "Writing lines to a file"
ifile = open( "/tmp/testfile", "w+")
for i in range(0,100):
ifile.write( "One of the lines of the filen" )
print "Printing line ",i," to /tmp/testfile"
ifile.close()
print "Reading and printing lines of /tmp/testfile"
ifile = open( "/tmp/testfile", "r")
for line in ifile:
print line
ifile.close()
print "End of Python Script"
PHP コード:
<?php
$param1 = "first";
$param2 = "second";
$param3 = "third";
$command = "python /home/wellington/python_script_example.py";
$command .= " $param1 $param2 $param3 2>&1";
header('Content-Type: text/html; charset=utf-8');
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />';
echo "<style type='text/css'>
body{
background:#000;
color: #7FFF00;
font-family:'Lucida Console',sans-serif !important;
font-size: 12px;
}
</style>";
$pid = popen( $command,"r");
echo "<body><pre>";
while( !feof( $pid ) )
{
echo fread($pid, 256);
flush();
ob_flush();
echo "<script>window.scrollTo(0,99999);</script>";
usleep(100000);
}
pclose($pid);
echo "</pre><script>window.scrollTo(0,99999);</script>";
echo "<br /><br />Script finalizado<br /><br />";
?>