PHP $ _SERVER python eşdeğer nedir?

2 Cevap php

Ben PHP $ _SERVER eşdeğer Python bulamadı.

Herhangi var mı? Ya da, eşdeğer sonuçlar getirmesini yöntemler nelerdir?

Şimdiden teşekkürler.

2 Cevap

: Ben mod_python üzerinde (uzun hikaye ama bana güven) önerebilirim mod_wsgi, hangi kullanarak ... Başvurunuz environment değişken gibi geçirilir

def application(environ, start_response):
    ...

Ve çevre PHP $ _SERVER tipik öğeleri içeren

...
environ['REQUEST_URI'];
...

Ve böylece.

http://www.modwsgi.org/

Good Luck

REVISION The real correct answer is use something like Flask

You don't state it explicitly, but I assume you are using mod_python? If so, (and if you don't want to use mod_wsgi instead as suggested earlier) take a look at the documentation for the request object. It contains most of the attributes you'd find in $_SERVER.
An example, to get the full URI of the request, you'd do this:

def yourHandler(req):
    querystring=req.parsed_uri[apache.URI_QUERY]

QueryString özniteliği artık sonra isteğin sorgu dizesi, yani, bir kısmını ihtiva edecek '?'. (Yani, için http://www.example.com/index?this=test, querystring this=test olurdu)