vote up 1 vote down star

I've created the a class and tested, and getting the error

Parse error: syntax error, unexpected T_STRING, expecting T_FUNCTION in /usr/local/apache/htdocs/MiniBlog/user/user_class.php on line 96

The line 96 is in the function of class User:

class User{
    var $reg_time;
    functioin set_regtime($regtime){
                    $this->reg_time=$regtime;
          }
}

I just call the funciton set_regtime like this:

$registtime=(int)date("Y-m-d H:i:s");
$user=new User;
$user->set_regtime($registtime);

The php version is 5.3. Please help me to debug it, Thanks.

flag

59% accept rate
I'm using PHP 5.3. – Charlie Epps Jul 22 at 2:30
6  
PHP can't read your source code. The error is on line 96. If you want someone to tell you what's wrong with that line, you'll need to post the source code for the file. – too much php Jul 22 at 2:30

3 Answers

vote up 6 vote down check

What about the spelling mistake?

functioin != function

link|flag
1  
Oh, My god! What I'm doing? Thank you very much. – Charlie Epps Jul 22 at 2:43
haha, looking at code for too long makes your eyes go funny. I've been tripped up on this type of thing many times. :) – Christian Jul 22 at 2:44
vote up 0 vote down

seems like a nesting error, check if all the curly-braces are closed ( { } ) properly!

link|flag
vote up 0 vote down

hahahah dat was soo funny :D i had d same problem "cfunction" woah not complicated is it :)

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.