Parse error in PHP array -


    $labels = (         'steam' => 'steam',         'bore_water' => 'bore water',         'boiler1oil' => 'boiler 1 oil',     ); 

parse error: syntax error, unexpected t_double_arrow on line 32: 'steam' => 'steam',

can spot issue this?

$labels = array(     'steam' => 'steam',     'bore_water' => 'bore water',     'boiler1oil' => 'boiler 1 oil', ); 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -