PHP

[PHP] PHP / Grammar

OOQ 2022. 8. 2. 09:26
728x90
SMALL

#php

#php grammar

Put PHP code in HTML document

Put your PHP code in an HTML document. To do this, you have to tell it which parts are PHP code. There are several ways to specify the PHP code part, but usually [Method 1] is used.

Method 1
Put your PHP code between <?php and ?>.

<?php
  // PHP Code
?>

Method 2
Put your PHP code between the script tags.

<script language="php">
  // PHP Code
</script>

others
You can also use the following form when setting on the server, i.e. in php.ini:

<?
  // PHP Code
?>
<%
  // PHP Code
%>

However, it cannot be used on servers that do not have such settings, so it is not used well.

 

distinguish between commands

Separate multiple commands with a semicolon (;).

<?php
  echo 'Lorem';
  echo 'Ipsum';
?>

You don't have to put a semicolon in the last command.

<?php
  echo 'Lorem';
  echo 'Ipsum'
?>

at the end of the document? > can be omitted.

<?php
  echo 'Lorem';
  echo 'Ipsum';

comment

one line comment
Single line comments consist of // or #. The content after // or # becomes a comment.

// comment
# comment

multi-line comment
Multi-line comments consist of /* and */. The content between /* and */ becomes a comment.

/* comment
comment */
728x90
LIST