Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:70986 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 45177 invoked from network); 3 Jan 2014 18:50:05 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 3 Jan 2014 18:50:05 -0000 Authentication-Results: pb1.pair.com header.from=php@golemon.com; sender-id=softfail Authentication-Results: pb1.pair.com smtp.mail=php@golemon.com; spf=softfail; sender-id=softfail Received-SPF: softfail (pb1.pair.com: domain golemon.com does not designate 209.85.192.174 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.192.174 mail-pd0-f174.google.com Received: from [209.85.192.174] ([209.85.192.174:36647] helo=mail-pd0-f174.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id AA/83-12805-C5607C25 for ; Fri, 03 Jan 2014 13:50:04 -0500 Received: by mail-pd0-f174.google.com with SMTP id x10so15765965pdj.33 for ; Fri, 03 Jan 2014 10:50:02 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=izjbqtrno4ZXCQO/Y/9h2cIjR3XGH05zdutMrdvgHzA=; b=ZNq8ktfVmSqyjPi2nZNYPAGW++Dp9sMrsKtGYxEwZM7R1w4wLsJ/CB2ITjdX4cg4x7 p2mDev485Xqra7VHbA2nGboqEmX7lMTux10UgU16uJb6ez0kcJ5vHSmRtETj3Bo6tC+g PEUeTJQPNEI8vBpqcK1KmpKbUCry0JHLub8wvDgR0gT7HdEaFZps1pEAo+pohanGUuqc dqzpozQhX4a0NXy9v3qySrCs1+4WxY1EovH8LFM1xtq4woQWFnNi5ZQ1Zq8fjhJrd0ri V7cA4ulfG8AsUDNWBMV6QBPrfpsvnWWBcppsmElsem5ZIsFIhQIkEnSMEMjQpDyj6Odr LJqg== X-Gm-Message-State: ALoCoQk/7FLxbL0GKnoAKI/AzXucxujzJpn2tLnSesUiiuTBwgnlVFYvrQSX0HK/JMJk9q0GQQqv MIME-Version: 1.0 X-Received: by 10.66.254.69 with SMTP id ag5mr36496649pad.112.1388775002020; Fri, 03 Jan 2014 10:50:02 -0800 (PST) Sender: php@golemon.com Received: by 10.70.77.164 with HTTP; Fri, 3 Jan 2014 10:50:01 -0800 (PST) X-Originating-IP: [173.252.71.189] In-Reply-To: <52C6E2F2.2020408@ajf.me> References: <52C6E2F2.2020408@ajf.me> Date: Fri, 3 Jan 2014 10:50:01 -0800 X-Google-Sender-Auth: PUfSD1N_9go1CJbcNXJvxG0tg0s Message-ID: To: Andrea Faulds Cc: Pierre Joye , zhifeng hu , PHP internals Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [PHP-DEV] Is it possible introduce HHVM into PHP kernel tree? From: pollita@php.net (Sara Golemon) > It's my understanding that HHVM is incomplete, as well. Does HHVM implement > the full basic functionality of PHP? Are there still things which don't work > for performance reasons? > Syntax: Yes, HHVM is an equivalent engine.* Runtime Library: This is the big gap. PHP has a bunch of bundled extensions and a massive library of PECL extensions. Since the extension API is very different, each extension has to be reimplemented, and not all of them have been. -Sara * Actually HHVM hasn't finished finally yet, but that's very new in PHP. Also, there are a couple small areas where HHVM intentionally differs from PHP.