LoginSignup
0
0

More than 5 years have passed since last update.

PHP関数の定義

Posted at

<?php

//この下に関数getRectangleAreaを作ってください
//引数として$heightと$widthを受け取り、
//その面積をreturnします
//この下で$rectangle_areaに高さが5、幅が10の長方形の面積を、
//getRectangleArea関数を用いて代入してください



function getRectangleArea($height, $width){
  return $height * $width;
}
$rectangle_area = getRectangleArea(5,10);

//$height = 5 , $width = 10が代入される
//returnで5×10の計算
//最後に$rectangle_areaに計算結果を代入





//この下に関数printAreaを作ってください
//引数として$areaを受け取り、
//"面積は".$area."です。"とechoします
//この下で$rectangle_areaの面積を、
//printArea関数を用いてechoしてください。


function printArea($area){
  echo "面積は".$area."です。";
}
printArea($rectangle_area);

//printAreaに先ほど計算した$rectangle_areaの結果を代入して、echoで表示

?>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0