Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:7156 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 57744 invoked by uid 1010); 17 Jan 2004 18:55:18 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 57720 invoked by uid 1007); 17 Jan 2004 18:55:18 -0000 Message-ID: <20040117185518.57719.qmail@pb1.pair.com> To: internals@lists.php.net Date: Sat, 17 Jan 2004 13:55:15 -0500 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) 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: 66.65.38.153 Subject: README.PHP4-TO-PHP5-THIN-CHANGES From: cellog@php.net (Greg Beaver) Hi, There is a bug in #6 of README.PHP4-TO-PHP5-THIN-CHANGES. It should read: 6. Starting PHP 5.0.0 the T_ML_COMMENT constant is no longer defined by the ext/tokenizer extension. If error_reporting is set to E_ALL notices will be produced. Instead of T_ML_COMMENT for /* */ the T_COMMENT constant is used, thus both // and /* */ are resolved as the T_COMMENT constant. However, a phpdoc-style comment /** */ will resolve as the new T_DOC_COMMENT constant. In addition, I noticed that argv and argc don't appear to be registered in $_SERVER in the cli version any more - is this expected behavior? If so, it should be added to THIN-CHANGES as well. It does seem planned, since both $argv and $argc exist. Thanks, Greg