Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:28534 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 30548 invoked by uid 1010); 21 Mar 2007 14:52:41 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 30533 invoked from network); 21 Mar 2007 14:52:41 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Mar 2007 14:52:41 -0000 Authentication-Results: pb1.pair.com smtp.mail=tijnema@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=tijnema@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.134.186 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: tijnema@gmail.com X-Host-Fingerprint: 209.85.134.186 mu-out-0910.google.com Received: from [209.85.134.186] ([209.85.134.186:24742] helo=mu-out-0910.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 60/9C-21072-8B641064 for ; Wed, 21 Mar 2007 09:52:41 -0500 Received: by mu-out-0910.google.com with SMTP id i10so546021mue for ; Wed, 21 Mar 2007 07:52:38 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=hdDMTwLqsOmec2zMCKXGnF9Bndl1Muw9xBsPOqm3L+Lt9X9obYLfjwJ1RS/aVS8KVab7ZpNHH59G2dX+j/XDLT11TIBcvT2nZYxE75V9y0X33T5tK5OC/ejdozxWIR89U3AFo3yfWe34yTVOBSaFFWGY4I32vZVj2NLgHmW5oME= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=MtMbYpkZMxadwSp59LVKoKSwRfNcCLRaJKbSFqWfPZ+NFn4KQ0xDWpYxF22X/m5HLNt8HWDOhBOo8RvdA3vJVZm6AKqclzJSV8asyRCuvt3jFnLK1x0KTBqyF/DXhKh4yUqwAC2Ewutv2k3gnS1Xj48Bt8Wxh2eGwRYeQ97H7cA= Received: by 10.82.134.12 with SMTP id h12mr1812927bud.1174488757777; Wed, 21 Mar 2007 07:52:37 -0700 (PDT) Received: by 10.82.98.10 with HTTP; Wed, 21 Mar 2007 07:52:37 -0700 (PDT) Message-ID: Date: Wed, 21 Mar 2007 15:52:37 +0100 To: "Antony Dovgal" Cc: "Robert Cummings" , internals@lists.php.net In-Reply-To: <46012EA4.4040905@zend.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1405337330.20070315155023@marcus-boerger.de> <1475201111.20070315162711@marcus-boerger.de> <167173066.20070315224827@marcus-boerger.de> <45049.216.230.84.67.1174434279.squirrel@www.l-i-e.com> <4600F35E.2050707@zend.com> <1174481295.24632.209.camel@blobule> <46012EA4.4040905@zend.com> Subject: Re: [PHP-DEV] GSoC From: tijnema@gmail.com ("Tijnema !") On 3/21/07, Antony Dovgal wrote: > On 03/21/2007 03:48 PM, Robert Cummings wrote: > > On Wed, 2007-03-21 at 11:57 +0300, Antony Dovgal wrote: > >> > >> I don't think anybody sane is doing audio encoding and video resizing in PHP. > >> PHP is about interface, clients are not going to wait an hour or two for a page to load. > > > > I think this is a limitation in your grasp of where and why PHP is being > > used. I (and many others I've seen pass through php-general -- and > > countless others I'm sure) use PHP as a general purpose scripting engine > > for not just the web, but for shell scripts, and anything else that > > comes to mind. > > I'm using PHP as a general purpose language either, but that doesn't mean I'm encoding video with it. > There are specialized tools for that and I don't think we should re-implement them just "because we can" (c). > > Btw, if you read whole discussion (and not just the last email), you'd see that nobody even mentioned CLI. > > > I'm sure the PHP-GTK and other GUI binding extensions would argue with you also. > > -- > Wbr, > Antony Dovgal Well, what I'm doing nowadays is using PHP for more then only creating websites. As at this point a large amount of people is on broadband and not caring about a big site. Also the server's are getting faster, of course it still requires a good server to handle a lot of video encoding/decoding tasks, but this could also be done with 1 at a time, setting the others in wait list stored in a database for example. I never care about speed, I want things be done easily. and that's one of the biggest reasons i'm using PHP for about everything. if you compare PHP with C/C++ then is PHP a lot simpler, for example PHP variables are just defined when using them for the first time. And then you don't need to define what it exactly is, is it an array?, integer?, string? and just a little bit later i changed my mind and use the same variable as something else. If a real PHP Compiler existed I think I would even write programs in PHP. I'm just trying to extend the limits of PHP what it is now. Currently it supports already a lot of things, from databases to XML parsing :) And of course the portability of PHP is very nice. Most scripts run on browser and CLI, windows and linux. But not everyone is using PHP like me, and that's why I'm talking here with you guys about my ideas. And so if there's enough interest we could start a new project. But it seems like that there's not enough interest for this project. I also noted a PHP Compiler, I saw some tools on the net about this, but found that it was only for creating windows applications, anyone saw a PHP compiler for linux? Regards, Tijnema > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > >