- Output for 8.2.0 - 8.2.29, 8.3.0 - 8.3.23, 8.4.1 - 8.4.10
- https://www.google.co.jpphpjoin1 Warning: Array to string conversion in /in/d1FUQ on line 14 Array
<?php
define("GOOGLE_URL","https://www.google.co.jp");
echo GOOGLE_URL;
$word = "php";
$name = "join";
echo $word,$name;
$sampleArray1 = [1,2,3];
$sampleArray2 = array(1,2,3);
echo $sampleArray1[0],$sampleArray2;
?>