ID: 21041 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Bogus Bug Type: Scripting Engine problem Operating System: Linux SUSE PHP Version: 4.2.3 New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Thank you for your interest in PHP. Previous Comments: ------------------------------------------------------------------------ [2002-12-16 04:54:18] [EMAIL PROTECTED] Triuble in $ at string variable value in the class at the end of the string class a{ var $a = "a$"; } Error! class a{ var $a = 'a$'; } Work! ------------------------------------------------------------------------ [2002-12-16 04:51:49] [EMAIL PROTECTED] This source generate error: class rpcSender { var $p_list = array ( "faxClient" => ".*", "yurlicoClient" => "^[Y|N]$", "idServerClient" => ^"1$" ); } But this: $p_list = array ( "faxClient" => ".*", "yurlicoClient" => "^[Y|N]$", "idServerClient" => "^1$" ); And this class rpcSender { var $p_list = array ( "faxClient" => ".*", "yurlicoClient" => "[Y|N]", "idServerClient" => "1" ); } Working ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=21041&edit=1