Skip to content

Instantly share code, notes, and snippets.

View KimiyukiYamauchi's full-sized avatar

Kimiyuki Yamauchi KimiyukiYamauchi

View GitHub Profile
@KimiyukiYamauchi
KimiyukiYamauchi / bmi.php
Last active December 28, 2015 04:58
BMI値を計算する
<?php
function bmi ($height,$mass)
{
$height = $height / 100;
$mass = $mass / ($height * $height);
return $mass;
}
function h($str) {
return htmlspecialchars($str, ENT_QUOTES, "UTF-8");