I’m using eclipse and I put a script into my project. In a config-file there are php-statements like the following:
@ftp_mode=(0,0,0);
@ftp_user=("","","");
Eclipse marks them as syntax errors but everything works. So I want to know if this is an error and if not what means it? It looks like an assignment, but there’s no $-sign …
Thanks in advance.
Regards Binabik
If it’s a config file for an app it’s likely that the app parses the file internally so the syntax won’t matter. It would generate a parse error in standard PHP syntax.