Home > Backend Development > PHP Tutorial > Php调用python模块的方法

Php调用python模块的方法

WBOY
Release: 2016-06-20 13:02:03
Original
4076 people have browsed it

Php对python模块的调用

如何用PHP调用外部的程序?

下面是操作步骤:

环境:windows XP, php5.3, python2.6.6

1.安装 python ( http://www.python.org/ftp/python/2.6.6/python-2.6.6.msi)

2. 将python.exe 所在目录  加入系统变量

       我的是 F:\Python26

如果配置成功, 在 DOS模式下 键入 python 会进入python命令行模式:

3.php 的安装 (php的安装就不细说了,不会的请百度之);

4.写一段测试的python 脚本  文件名:php_get_python.py

5.使用php 调用python模块, php_get_python.php

system('php_get_python.py');
Copy after login

或者

exec('php_get_python.py');
Copy after login

1. 本文中的python模块比较简单,大家可以发散思维,python可以用来 做蜘蛛爬虫,计算...等操作。

2. 好好理解和掌握系统变量,你会有意想不到的收获。

如果把  E:\wamp\www\python_module\ 也加入系统变量


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template