Syntax error, unexpected T_DOUBLE_ARROW

Fermé
Dronoïde - 23 avril 2010 à 06:58
 Dronoïde - 6 oct. 2010 à 17:19
Boujour,

Je fais appel à votre aide vu que j'ai vérifié et re-vérifié mon code et que je n'y trouve pas d'erreur de syntaxe apparente.
J'ai deux etoiles ** devant la ligne incriminée.

public function __construct(){
$this->fr_url = 'http://fr.aiononline.com/livestatus/character-legion/';
$this->en_url = 'http://uk.aiononline.com/livestatus/character-legion/';
$this->de_url = 'http://de.aiononline.com/livestatus/character-legion/';
** $this->fr_month = ('Jan' => 'Jan', 'Feb' => 'Fev', 'Mar' => 'Mar', 'Apr' => 'Avr', 'May' => 'Mai', 'June' => 'Juin', 'July' => 'Juil', 'Aug' => 'Août', 'Sep' => 'Sep', 'Oct' => 'Oct', 'Nov' => 'Nov', 'Dec' => 'Dec');
$this->de_month = ('Jan' => 'Jan', 'Feb' => 'Fev', 'Mar' => 'Mär', 'Apr' => 'Avr', 'May' => 'Mai', 'June' => 'Juni', 'July' => 'Juli', 'Aug' => 'Aug', 'Sep' => 'Sep', 'Oct' => 'Okt', 'Nov' => 'Nov', 'Dec' => 'Dez');
$this->url = null;
}

Merci.

2 réponses

Trop tard j'ai trouvé tout seul ^^

En fait c'est le "Syntax error" qui m'a induit en erreur.
J'avais oublié le mot-clé "Array" au moment de déclarer mes tableaux.

$this->fr_month = ('Jan' => 'Jan', 'Feb' => 'Fev', ...etc...
$this->de_month = ('Jan' => 'Jan', 'Feb' => 'Fev', ...etc...


Deviens >>

$this->fr_month = Array('Jan' => 'Jan', 'Feb' => 'Fev', ...etc...
$this->de_month = Array('Jan' => 'Jan', 'Feb' => 'Fev', ...etc...
4