From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/glossary/php/index.html | 63 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 files/ja/glossary/php/index.html (limited to 'files/ja/glossary/php/index.html') diff --git a/files/ja/glossary/php/index.html b/files/ja/glossary/php/index.html new file mode 100644 index 0000000000..fca5f317c4 --- /dev/null +++ b/files/ja/glossary/php/index.html @@ -0,0 +1,63 @@ +--- +title: PHP +slug: Glossary/PHP +tags: + - Beginner + - CodingScripting + - Glossary + - Infrastructure + - Intro + - PHP + - 初心者 + - 用語集 +translation_of: Glossary/PHP +--- +

PHP (再帰的な頭文字語で PHP: Hypertext Preprocessor) はオープンソースのサーバー側スクリプト言語で、 HTML に組み込んで、ウェブアプリや動的なウェブサイトを構築することができます。

+ +

+ +

基本的な文法

+ +
  // start of PHP code
+<?php
+     // PHP code goes here
+ ?>
+// end of PHP code
+ +

画面にデータを出力する

+ +
<?php
+   echo "Hello World!";
+?>
+ +

PHP の変数

+ +
​​​​​​​​​​​​​​<?php
+ // variables
+ $nome='Danilo';
+ $sobrenome='Santos';
+ $pais='Brasil';
+ $email='danilocarsan@gmailcom';
+​​​​​​​
+ // printing the variables
+ echo $nome;
+ echo $sobrenome;
+ echo $pais;
+ echo $email;
+?>
+ + -- cgit v1.2.3-54-g00ecf