I have a server running SunOS 5.1, and I had a problem with the source of the php file display. When configuring the array, the source starts to appear after => . After the first => displays the rest of the file. Why is this happening?
Source example: index.php
<?php
$tmpVar = 'just testing';
$tmpArray = array(
'test1' => 'rawr1',
'test2' => 'rawr2',
'test3' => 'rawr3'
);
echo "Testing<br/>";
?>
This will lead to the conclusion:
'rawr1', 'test2' => 'rawr2', 'test3' => 'rawr3'); echo "Testing<br/>"; ?>
source
share