戻る

解答例

PHP

<?php
header("Content-type: text/html; charset=utf-8");

$team = array("ブラジル","イタリア","アルゼンチン","フランス");

echo "<pre>";
print_r($team);
echo "</pre>";

echo "<pre>";
var_dump($team);
echo "</pre>";
?>

inserted by FC2 system