diff options
Diffstat (limited to 'files/ja/glossary/php/index.html')
-rw-r--r-- | files/ja/glossary/php/index.html | 63 |
1 files changed, 63 insertions, 0 deletions
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 +--- +<p>PHP (再帰的な頭文字語で PHP: Hypertext Preprocessor) はオープンソースのサーバー側スクリプト言語で、 HTML に組み込んで、ウェブアプリや動的なウェブサイトを構築することができます。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Basic_syntax" name="Basic_syntax">基本的な文法</h3> + +<pre class="brush: php"> // start of PHP code +<?php + // PHP code goes here + ?> +// end of PHP code</pre> + +<h3 id="Printing_data_on_screen" name="Printing_data_on_screen">画面にデータを出力する</h3> + +<pre class="brush: php"><?php + echo "Hello World!"; +?></pre> + +<h3 id="PHP_variables" name="PHP_variables">PHP の変数</h3> + +<pre class="brush: php"><?php + // variables + $nome='Danilo'; + $sobrenome='Santos'; + $pais='Brasil'; + $email='danilocarsan@gmailcom'; + + // printing the variables + echo $nome; + echo $sobrenome; + echo $pais; + echo $email; +?></pre> + +<section class="Quick_links" id="Quick_Links"> +<ol> + <li><a href="http://php.net/">公式ウェブサイト</a></li> + <li>Wikipedia 上の {{Interwiki("wikipedia", "PHP")}}</li> + <li>Wikibooks 上の <a href="https://ja.wikibooks.org/wiki/PHP">PHP</a></li> + <li><a href="/ja/docs/Glossary">MDN Web Docs 用語集</a> + <ol> + <li>{{Glossary("Java")}}</li> + <li>{{Glossary("JavaScript")}}</li> + <li>{{Glossary("Python")}}</li> + <li>{{Glossary("Ruby")}}</li> + </ol> + </li> +</ol> +</section> |