Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:264 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 35590 invoked from network); 25 Mar 2003 12:59:16 -0000 Received: from unknown (HELO smtpgate.proventum.net) (195.216.217.135) by pb1.pair.com with SMTP; 25 Mar 2003 12:59:16 -0000 Received: from padedin (pad-edin.intra.proventum.net [10.0.0.54]) by smtpgate.proventum.net (Postfix) with SMTP id 731FC52942; Tue, 25 Mar 2003 13:59:15 +0100 (CET) Message-ID: <01c601c2f2ce$570b5360$3600000a@intra.proventum.net> To: "Jan Schneider" , References: <1048597006.bc7cd150f1bf1@jan.dip.ammma.net> Date: Tue, 25 Mar 2003 13:59:15 +0100 Organization: Proventum Solutions ApS MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Subject: Re: [PHP-DEV] __LINE__ != __LINE__? From: edink@proventum.net ("Edin Kadribasic") > Current HEAD: > > die("line: " . __LINE__) works as expected, but die(__LINE__) doesn't output > anything. That's because die(int) will set exit status and not print anything. die(string) prints string and exits. Edin