1

有没有关于如何使用 php 使用 Wsgi Python Web 服务的教程?

这里有几篇这样的文章:“使用 PHP 调用 Python Web 服务”但我没有使用肥皂

这是我的示例 python web 服务:

import pymysql
import json 
from bottle import route, run ,request

@route('/testing/', method='GET')
def testing_request():
    testing = request.GET.get( "testing" )
    if "" != testing:
-------do something on mysql--------
-------return something to json--------

application = bottle.default_app()

我在 apache web 服务器上将此文件用作 Wsgi,与想要使用它的 php 网站相同。

4

0 回答 0