Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:36414 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 28513 invoked from network); 24 Mar 2008 02:09:23 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 24 Mar 2008 02:09:23 -0000 Authentication-Results: pb1.pair.com smtp.mail=igor.feghali@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=igor.feghali@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 66.249.92.170 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: igor.feghali@gmail.com X-Host-Fingerprint: 66.249.92.170 ug-out-1314.google.com Received: from [66.249.92.170] ([66.249.92.170:39555] helo=ug-out-1314.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 88/61-18928-15D07E74 for ; Sun, 23 Mar 2008 21:09:23 -0500 Received: by ug-out-1314.google.com with SMTP id u40so1830945ugc.29 for ; Sun, 23 Mar 2008 19:09:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; 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; bh=2O6MwxvXLgxmAGV9NloWW+xDNubx2+9lQ3wG3JPs9J8=; b=ZnwFBpV0bhfCEF0KtK+2TZeoqXAZnn2/m+eDrUFLiT9TQ/Q+kwYgWhydWira3UtW4UqEWkYnJIQsEd04q0ILJN+InEzns52DwfdUstqu15IxzD0H7iHy8bIaBXGeDh3EGZ5+DgU8aDsnJe41RFiMtsFBUDW/ZXs5kk/GB612+TQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=GL/Fc/uRtnMCMwAtelWINn4Z1ok6fO0ddZZGL03N3JGGCeaJVflw5cd9K50NPYWpnqQT4e/aGxRahYv6pkw0/35F73aKJb4XxQ4RZ0qyRWV+6aRdnoK7Js7nvYEPaPjxrFyTpUXmsk9ADcFpdmIJTEh61atiN9Jx6a0g0rVTp/4= Received: by 10.67.26.7 with SMTP id d7mr4360549ugj.23.1206324558779; Sun, 23 Mar 2008 19:09:18 -0700 (PDT) Received: by 10.66.220.7 with HTTP; Sun, 23 Mar 2008 19:09:18 -0700 (PDT) Message-ID: Date: Sun, 23 Mar 2008 23:09:18 -0300 To: "Stanislav Malyshev" Cc: jani.taskinen@iki.fi, "Marcus Boerger" , "PHP Internals" In-Reply-To: <47E4170A.2000306@zend.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47E3F714.60302@zend.com> <883216194.20080321193140@marcus-boerger.de> <47E40848.1060103@zend.com> <47E40C3F.8040601@sci.fi> <47E40E6E.5030103@zend.com> <47E410C6.80605@sci.fi> <47E4170A.2000306@zend.com> Subject: Re: [PHP-DEV] short_open_tag From: igor.feghali@gmail.com ("Igor Feghali") On Fri, Mar 21, 2008 at 5:14 PM, Stanislav Malyshev wrote: > Can you produce any example of > application or other real code that would silently misbehave with short > tags on but behave OK with short tags off? Embedding PHP in a SVG (XML) file to generate a batch of images with small differences. In my case web buttons with different labels and icons. This way I have only one SVG file with some PHP code inside (a few echos) that is included by an external PHP file. The PHP script loops through an array of strings (labels and absolute path to icons) and save to the filesystem as many SVGs as necessary. That saves me a lot of work when I have to create a some more new buttons. I don't mean short_open_tag should be banned or not, but thats one possible example for your request. best regards, iGor.