API php help please (SOLVED)

Thanks Larklen
So this is what I have but it breaks my whole page. Im not sure what to do to fix.

<?php $channels = array("fatpally", "dyannatv", "mongervog") ; $callAPI = implode(",",$channels); $clientID = 'MYTWITCHCLIENTID' $arrContextOptions=array( "ssl"=>array( "verify_peer"=>false, "verify_peer_name"=>false, ), ); $dataArray = json_decode(file_get_contents('https://api.twitch.tv/kraken/streams?channel=' . $callAPI . '&client_id=' . $clientID, false, stream_context_create($arrContextOptions)), true);

foreach($dataArray[‘streams’] as $mydata){

if($mydata[‘_id’] != null){
$name = $mydata[‘channel’][‘display_name’];
$game = $mydata[‘channel’][‘game’];
$url = $mydata[‘channel’][‘url’];

echo “ONLINE”;
}
}
if($dataArray[‘streams’] == null or $dataArray[‘streams’] == “”)
{
echo “OFFLINE”;
}
?>

I used a php code checker online and got this response

PHP Syntax Check: Parse error: syntax error, unexpected ‘$arrContextOptions’ (T_VARIABLE) in your code on line 5
$arrContextOptions=array(

Any help fixing to get the php script working again.