0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PHPで「定数」の動作を確認してみた。

Posted at

概要

PHPで「定数」の動作を確認してみました。
以下のページを参考にしました。

実装

以下のファイルを作成しました。

sample.php
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>PHPテスト</title>
</head>
<body>

<p>PHPのテストです。</p>

<p>
<?php
define("PAI", 3.14159);

$r = 7;
$menseki = PAI * $r * $r;
print '半径='.$r.'の面積は'.$menseki.'<br />';

$r = 14;
$menseki = PAI * $r * $r;
print '半径='.$r.'の面積は'.$menseki;
?>
</p>

</body>
</html>

以下のコマンドを実行しました。

$ php sample.php 
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>PHPテスト</title>
</head>
<body>

<p>PHPのテストです。</p>

<p>
半径=7の面積は153.93791<br />半径=14の面積は615.75164</p>

</body>
</html>

まとめ

何かの役に立てばと。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?