Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:86221 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 80999 invoked from network); 14 May 2015 14:54:29 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 May 2015 14:54:29 -0000 Authentication-Results: pb1.pair.com smtp.mail=albertcasademont@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=albertcasademont@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.213.174 as permitted sender) X-PHP-List-Original-Sender: albertcasademont@gmail.com X-Host-Fingerprint: 209.85.213.174 mail-ig0-f174.google.com Received: from [209.85.213.174] ([209.85.213.174:34070] helo=mail-ig0-f174.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 39/F8-31470-427B4555 for ; Thu, 14 May 2015 10:54:28 -0400 Received: by igblo3 with SMTP id lo3so13422023igb.1 for ; Thu, 14 May 2015 07:54:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=C+Y+Tvf95YVWtgUNPVUAPt2ZlHlxwTN3Kmm3mLw0d/g=; b=O48X77iEdYvcpqqx1JGbDiOWgK1dcpZXwRzMnmdHCYOlzsJOfDf3/hD0LJGxuZrM3Q XNOgtdWNO+feTlyP9+zARKBUFlujQ/QqBmWjk17g7mciP6b+/JF/nZmDd/L3w49TpxL3 9S5wW+3iTePuHTPGZSeuzZzIbdlA5O4Ql1VyDqUnda1pkO7cSw6uPofXIWHqkFRpVxS8 fkd20yIPXjOa1WORnDMMnrjVFHFxN+eUgZqrlfchr+hahQWL+P5F900J81hJlZBjiFqt K2ylVUf5APKtO5ygEQNWXi7XQvXLiLRXqX2xXIWNUo73pntfeMtjxem7iTgWT8Ro0j6v 1GQA== X-Received: by 10.107.35.203 with SMTP id j194mr5825923ioj.45.1431615265724; Thu, 14 May 2015 07:54:25 -0700 (PDT) MIME-Version: 1.0 Received: by 10.79.98.70 with HTTP; Thu, 14 May 2015 07:54:05 -0700 (PDT) In-Reply-To: References: Date: Thu, 14 May 2015 16:54:05 +0200 Message-ID: To: bishop@php.net Cc: PHP internals Content-Type: multipart/alternative; boundary=001a114044405e5ee405160be7f8 Subject: Re: [PHP-DEV] Alternative PHP tags and strict_types=1 From: albertcasademont@gmail.com (Albert Casademont) --001a114044405e5ee405160be7f8 Content-Type: text/plain; charset=UTF-8 mmm I guess this is the correct behaviour, <% tags ar now not parsed at all and behave as plain text. If you run http://3v4l.org/uDDW3 foo wrote: > Hi! > > In php7@20150501, I've noticed that this code > produces the expected output [1]: > > <% echo 'top'; %> > > But this code unexpectedly produces the > strict-must-be-first instruction error: > > <% echo 'top'; %> > > > Am I missing something? I expected that removing the ASP tags > from the language > would remove them and their contents from tallying as instructions. > > Thanks, > bishop > > [1]: The expected output is "<% echo 'top'; %>", not "top". > --001a114044405e5ee405160be7f8--