Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:82185 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 71338 invoked from network); 8 Feb 2015 22:48:08 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Feb 2015 22:48:08 -0000 Authentication-Results: pb1.pair.com smtp.mail=ua.san.alex@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=ua.san.alex@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.223.176 as permitted sender) X-PHP-List-Original-Sender: ua.san.alex@gmail.com X-Host-Fingerprint: 209.85.223.176 mail-ie0-f176.google.com Received: from [209.85.223.176] ([209.85.223.176:47026] helo=mail-ie0-f176.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F0/B8-26926-5A7E7D45 for ; Sun, 08 Feb 2015 17:48:08 -0500 Received: by iecar1 with SMTP id ar1so12628618iec.13 for ; Sun, 08 Feb 2015 14:48:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=usqg4XsiKq6Rq9Rxzxv7j400k6HwHc2ETqaQ214Gpdg=; b=Io8Gjkd02J6JkrN9iwO0r+GbnZVgvfXpvht5+bOW5vYW82rCQS+aKMdDNpT2u2XBkz fYLf3RAx/LMJCoxqn6vGhQjB7Vneo7+XjGMgY3nPl7BCjwGVf2423fLP3XaPX/B804Hn 54d+U5Cben5WDx0cpgMwvtqdCIqx/0uWNX1iY4QlVfoFbLcxj7mR4opkUbw8K7sGXbx3 7bLoFkrhW1uwUqfo10c0l8wTlTQDChbQxlFrDMgBJr3tEnpTdQROsyVdFJcviQOCBI9a aPuoJwg2a8wFzJmh867RDcCRU1q6hCEt9cWXU0OIOkBHTIIMSuhFn9rqkmmdyTDzb842 daUw== MIME-Version: 1.0 X-Received: by 10.50.137.99 with SMTP id qh3mr13896106igb.7.1423435683584; Sun, 08 Feb 2015 14:48:03 -0800 (PST) Received: by 10.50.93.3 with HTTP; Sun, 8 Feb 2015 14:48:03 -0800 (PST) Date: Mon, 9 Feb 2015 00:48:03 +0200 Message-ID: To: internals Content-Type: text/plain; charset=UTF-8 Subject: [PHP-DEV] uWSGI experimental plugin for implementing a WSGI/PSGI/Rack-like interface for PHP From: ua.san.alex@gmail.com ("S.A.N") Hi internals. I really hope that in the future PHP 7, there will be new server API. May be you interested to know about them, here is the link, I am not the author of development: https://github.com/unbit/uwsgi-phpsgi/ But the problem is that in PHP there are no standards for such interfaces. Now it is implemented like this: 'text/plain'], 'Hello, world!']; } ?> I think this is a good opportunity to review the old interface ($_GET, $_POST, ...) and start using the API internal HTTP module. This all breaks backward compatibility, not $_GET, $_POST, ... But this WSGI SAPI will used only new PHP code (not PHP legacy base). This is a good opportunity to create something new and not be backward compatible. What do you think about this?