PHP Comments - PHP Tutorial 15
Вставка
- Опубліковано 12 лис 2024
- Notes for You:: PHP Comments - PHP Tutorial 15
Comments are something like notes inside the code.
Types of comments in PHP:
There are 2 types of comments in PHP.
Single line comments:
anything written after // on the line is treated as a comment.
Example: // comment goes here
anything written after # on the line is treated as a comment
Example: # comment goes here
Multiline comments
anything written in between /* and */ is treated as a comment
Example: /* comment goes here */
Comments are used to document the source code:
Comments are used to explain code the logic, so that we can understand the code later; as well as other developers can read and understand the code easily.
Comments are used to increase the readability and understandability of the source code.
If we don’t want to execute some part(s) of the code, we can comment them so that they can be ignored by the PHP engine.
Comments have no effect on the execution of a program.
Comments are ignored by the PHP engine.
Example Code:
<?php
// Author : Manjunath
DOM: 01-01-0101
/*
echo is the language construct used to display something on the browser
sequence of character enclosed in double quotations is called as string
*/
// echo "Hello World","<br/>";
/*
echo "Hello World","<br/>";
echo "Hello World","<br/>";
*/
echo "Hello PHP";
?>
Note:
replace < with less-than symbol.
replace > with greater-than symbol.
=========================================
Follow the link for next video:
PHP Tutorial 16 - Keywords in PHP language | PHP Reserved Key words
• PHP Reserved Keywords ...
Follow the link for previous video:
PHP Tutorial 14 - Tokens of PHP language | PHP Tokens Tutorial
• PHP Tokens - PHP Tutor...
=========================================
PHP Tutorials Playlist:-
• PHP Tutorials
=========================================
Watch My Other Useful Tutorials:-
MySQL Tutorials Playlist:-
• MySQL Tutorials
HTML Tutorials Playlist:-
• HTML Tutorials
CSS Tutorials Playlist:-
• CSS Tutorials
JavaScript Tutorials Playlist:-
• JavaScript Tutorials
=========================================
► Subscribe to our UA-cam channel:
/ chidrestechtutorials
► Visit our Website:
www.chidrestec...
=========================================
Hash Tags:-
#ChidresTechTutorials #PHP #PHPTutorial
SUBSCRIBE, SHARE & SUPPORT:
ua-cam.com/users/chidrestechtutorials
VISIT & LEARN AT FREE OF COST:
www.chidrestechtutorials.com
Thank you for the wonderful tutorials
Good
Thank you