Java <-> PHP | Single line comment
Java Used keywords: //
//
Description
//
Data:
- text -
Examples
Java
Single line comment the possible of use:x = 5 * y; // x = xy
// y = 123;
if (x > 0) // x == true
x=5;
.
PHP Used keywords: //
//
Description
//
Data:
- text -
Examples
PHP
Single line comment the possible of use:$x = 5 * $y; // x = xy
// y = 123;
if ($x > 0) // x == true
$x=5;
Java Used keywords: //
//
Description
//
Data:
- text -
Examples
Java
Single line comment the possible of use:x = 5 * y; // x = xy
// y = 123;
if (x > 0) // x == true
x=5;
.
PHP Used keywords: #
#
Description
#
Data:
- text -
Examples
PHP
Single line comment the possible of use:$x = 5 * $y; # x = xy
# y = 123;
if ($x > 0) # x == true
$x=5;
Single line comment in another programming language:
Differences to: