亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

echo display command

echo is the most commonly used command for output and display functions in PHP.

We can make it display any visible characters.

<?php

echo 123;

?>
<?php

$iphone = 6088;

echo $iphone;

?>

You can experiment with it. In the next chapter, when we talk about data types, I will teach you how to output Chinese and use PHP to display web page content.


Word:

*echo * Pronunciation: ['eko?]
Explanation: To echo; to reverberate.
Function explanation: output, display

Continuing Learning
||
<?php $iphone = 6088; echo $iphone; ?>
submitReset Code