Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:43693 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 98041 invoked from network); 14 Apr 2009 11:47:39 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 Apr 2009 11:47:39 -0000 Authentication-Results: pb1.pair.com header.from=glen.84@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=glen.84@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.221.134 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: glen.84@gmail.com X-Host-Fingerprint: 209.85.221.134 mail-qy0-f134.google.com Received: from [209.85.221.134] ([209.85.221.134:33969] helo=mail-qy0-f134.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 4A/F0-01762-AD774E94 for ; Tue, 14 Apr 2009 07:47:38 -0400 Received: by qyk40 with SMTP id 40so979812qyk.29 for ; Tue, 14 Apr 2009 04:47:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=RsQbO2fSfjEkocsiLB6vkGW4nIKJtcNaFhBR0006WzI=; b=wXKRqtrzFWxz8n7fiOT4sBvq8fbTzZD3JO9sjXprFfhBZ7EzglS7UCjSO7XU1kxlMR P/+ZWL0P5T40nHKlc32rxd2L6oH7LOpBaatTqbYqC+BRMtyUWTGL3vKMTTTeNj46s9mk KzFmYmuBuicZlixP3viDpD0LBwIoGIY59OHOM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=rE4FQpgOWEIuasAZ9gb4a+0YXE5KvDHc+vSnw98eoEgaNfnx2srqee4frfUD5J6iMY NaNIufG5W+PAOuqKYSFJfGWnLF3VYmuMGPFPS7GiSl3N1kMVbFGP2hIlU40pniWI+lF1 3vJiDor/0ZJg+hrawzgG28R1077Hc90m1gP0Q= Received: by 10.220.45.212 with SMTP id g20mr7698066vcf.43.1239709656039; Tue, 14 Apr 2009 04:47:36 -0700 (PDT) Received: from ?192.168.1.100? (dsl-240-11-65.telkomadsl.co.za [41.240.11.65]) by mx.google.com with ESMTPS id 6sm2113490ywi.59.2009.04.14.04.47.30 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 14 Apr 2009 04:47:35 -0700 (PDT) Message-ID: <49E477CA.9040709@gmail.com> Date: Tue, 14 Apr 2009 13:47:22 +0200 User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Evert | Filemobile CC: Stanislav Malyshev , Kalle Sommer Nielsen , Jeremy , internals@lists.php.net References: <49E352FD.6070008@gmail.com> <2dedb8a0904131124u57f2f32ei27083a289f7f18a4@mail.gmail.com> <49E39B3C.2020401@zend.com> <4E5BC7CA-8513-49F5-AEAF-5ABEC2A83EDA@filemobile.com> In-Reply-To: <4E5BC7CA-8513-49F5-AEAF-5ABEC2A83EDA@filemobile.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Re: Is it true that short_open_tag is deprecated in PHP 6? From: glen.84@gmail.com (Glen) Right, but at the moment something like: that;?> ... works. i.e. no whitespace after the opening tag. Changing this would most likely break a fair amount of code. Glen. Evert | Filemobile wrote: > > On 13-Apr-09, at 4:06 PM, Stanislav Malyshev wrote: > >> Hi! >> >>> Thats because with short_open_tags on, you need to use: >>> '); ?> >> >> It's a pretty small use case (that's a problem only if you have xml >> documents which has to have php code which has to be inlined) and as >> you see, can be easily handled. I think that should not make whole >> very useful syntax deprecated. > > I think the parser should look ahead and check for something like : > > / > (either > Evert