tags:

views:

647

answers:

2

PHP Parse error: syntax error, unexpected T_STRING, expecting T_FUNCTION in C:\Inetpub\wwwroot\webroot\www.novotempo.org.br\lib\Twitter.php on line 54

Hi, I´m Douglas from Brazil, and this above is my problem.

The line is just a DEFINE.... this one : define('DEBUG',false);

Searching the net I found that this usually occurs when you´re using PHP 4.xx, but I´m using 5.2.6 (Just saw it using phpinfo())

I tryed locally, and in two other external hosts, but it keeps returning the same msg.

Anyone can help? Tanx!

Doug

+2  A: 

If you are trying to DEFINE something inside of a class but outside of a function, you are going to get this error.

(Normally the only place PHP will be looking for a function and not expecting a string is in a class, outside of a method)

IE: Your code should not look like this:

class myClass
{
    define("DEBUG", true);
    function myFunc()
     {
     }
}
Chacha102
A: 

Thanks for this, resolved an annoying issue quite quickly for me.

I'd also like to add that the use of hyphens in constant names doesn't work and is apparently expected behaviour. It seems as though the echo tries to evaluate mathematics (minus) on the words.

<?php
define('THIS-IS-A-TEST','Testing');
echo THIS-IS-A-TEST;
?>

Returns '0'

<?php
define('THIS_IS_A_TEST','Testing');
echo THIS_IS_A_TEST;
?>

Returns 'Testing'

Lewis