echo() fungsi mengeluarkan satu atau lebih rentetan.
Nota - fungsi echo() lebih pantas daripada fungsi print().
echo(str)
str − Rentetan untuk dihantar ke output
tidak memulangkan apa-apa (.) fungsi
Berikut ialah contoh: −
Demo Dalam Talian
<?php echo "Welcome!"; ?>
Welcome!
Mari kita lihat contoh lain −
Livereee
Live Demo
<?php $str1 = "Welcome!"; $str2 = "This is our website!"; echo $str1 . " " . $str2; ?>
Output
Welcome! This is our website!
Atas ialah kandungan terperinci fungsi echo() dalam PHP. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!