Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm getting this error:

Parse error: syntax error, unexpected T_PRINT, expecting T_STRING in 
/homepages/26/d94605010/htdocs/lz/writecodeonline.com/php/index.php(190) 
: eval()'d code on line 7

Example:

   Class HelloWorld
    {   
      public $word;

      public function print()  
      {    
        echo $this->"hi";    
      }    
    }

    $word = new HelloWorld();
    $word = print();
share|improve this question
This is a good example for what not to do in OOP :D – mikemackintosh Jun 29 '12 at 18:11
1  
This code contains many errors... I really recommend to reread php.net/manual/en/language.oop5.php – Felix Kling Jun 29 '12 at 18:27

closed as too localized by tereško, PeeHaa 埽, webarto, Michael Berkowski, Lusitanian Feb 19 at 20:26

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

up vote 7 down vote accepted

print() is a reserved keyword. Also, this is invalid code:

        echo $this->"hi";

You will get this error:

PHP Parse error:  syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting T_STRING or T_VARIABLE or '{' or '$'

You should do it as:

Class HelloWorld
{   
  public $word = 'hi';

  public function printWord()  
  {    
    echo $this->word;    
  }    
}

$word = new HelloWorld();
$word = $word->printWord();
share|improve this answer

print is a reserved word in PHP.

You need to give your method some other name.

share|improve this answer
still getting error after renaming method to abc() Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting T_STRING or T_VARIABLE or '{' or '$' in /homepages/26/d94605010/htdocs/lz/writecodeonline.com/php/index.php(190) : eval()'d code on line 11 – rahul dagli Jun 29 '12 at 17:50

replace echo $this->"hi"; with echo "hi";, call $word->function(); instead of $word = function(); and rename print to something else

share|improve this answer

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