|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2002-09-19 03:21 UTC] derick@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 00:00:01 2025 UTC | 
Hello, the following Code makes a parse error: <? $array[0][0] = ' '; if ( empty( chop($array[0][0]) ) ) { echo 'none'; } ?> Error Output: Parse error: parse error, expecting `T_VARIABLE' or `'$'' in /usr/home/enrico/public_html/oscommerce/import_hersteller.php on line 19 I changed my Code to... if ( chop($array[0][0]) == '' ) and thats ok. greets enrico