Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:12993 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 56763 invoked by uid 1010); 26 Sep 2004 09:32:27 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 56737 invoked by uid 1007); 26 Sep 2004 09:32:27 -0000 Message-ID: <20040926093227.56736.qmail@pb1.pair.com> To: internals@lists.php.net Date: Sun, 26 Sep 2004 11:32:26 +0200 User-Agent: Mozilla Thunderbird 0.7 (Windows/20040616) X-Accept-Language: en-us, en MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Posted-By: 217.229.51.118 Subject: Suggestions for PHP From: michael.virnstein@brodos.de (Michael Virnstein) Hi there, what really would be nice, if PHP would have a more advanced way of quoting strings similar to Perl. E.g. the q{} and qq{} function are really helpful there or that i can use e.g. $var = !my string 'hallo'!; and i don't have to backslash ' and " inside the string. another thing that i find useful in Perl is the unless construct. I sometimes find it more readable to use "unless($error) {...} " instead of "if (!$error) {...}". I think this would be nice additions, perhaps you'll consider implementing them in future releases. Thanx