▼Example-again10-1.php
<!DOCTYPE html>
<html lang=“ja”>
<head>
<meta http-equiv=“Content-Type” content=“text/html;charset=UTF-8” />
<title>PHPテスト</title>
</head>
<body>
<p>PHPのテストです。</p>
<p>
<?php
$pricelist = array(80, 100, 120);
foreach ($pricelist as &$value){
$value *= 1.05;
}
unset($value);
foreach ($pricelist as $value){
print $value.‘<br />’;
}
?>
</p>
</body>
</html>