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

The error I have is unexpected T_STRING, expecting '(' on line 22, but I didn't see any ( missing.

Could anyone please explain to me what is going on here? Did I miss something before line 22?

Here is my code:

<?php

class Room { 
  protected $description = "";
  protected $name = "";
  protected $rooms = array(
   "ne" => NULL,
   "n" => NULL,
   "nw" => NULL,
   "e" => NULL,
   "c" => NULL,
   "w" => NULL,
   "se" => NULL,
   "s" => NULL,
   "sw" => NULL 
   );

  public function __construct ($n = "", $desc = "") { 
    $this->description = $desc;
    $this->name = $n;
  } 

  public function get Description () {
    return $this->description; 
  }

  public function get Name () {
    return $this->name; 
  }

  public function set Room ($direction = "c", $room) {
    $this->rooms[$direction] = $room; return True; 
  }

  public function getNewRoom ($direction = "") {
    return $this->rooms[$direction]; 
  } 
}


$start Room = new Room ("First Room", "A small room. There is a door to the north.");
$second Room = new Room ("Second Room", "A short hallway that ends in a dead end. There is a door to the south.");
$start Room->set Room("n", $second Room);
$second Room->set Room("s", $first Room);
$current Room = $start Room;

$play = True; 

while ($play) {
  print $current Room->get Name();
  print $current Room->get Description();

  $input = readline("(Enter your command. Type QUIT to quit.) >");

  if ($input == "QUIT") {
    $play = False; 
  } else { 
    if ($input == 'nw' || 
        $input == 'n' || 
        $input == 'né' || 
        $input == 'e' || 
        $input == 'e' || 
        $input == 'e' || 
        $input == 'e' || 
        $input == 'e' || 
        $input == 'e') 
    { 
      $current Room = $current Room->getNewRoom($input); 
    }
  } 

}

?>
share|improve this question
3  
this code does not looks like PHP at all, spaces in methods/variables, no $ on some variables, etc. – John Sep 17 '12 at 21:03

1 Answer

A bunch of your methods have spaces in their names.

public function get Description () {
public function get Name () {
public function set Room ($direction = "c", $room) {

These are not allowed. You must use one-word names:

public function getDescription () { // For example

Then, call it the same way:

print $currentRoom->getDescription();

The same thing must apply to variables.

$current Room = $start Room; // Not allowed
$currentRoom = $startRoom; // Good!
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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