国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > PHP > 正文

PHP的print函數

2024-05-04 21:52:45
字體:
來源:轉載
供稿:網友

PHP的print函數,姑且說是函數吧啊。可以使用在PHP 4, PHP 5的環境中。

print函數的作用就是輸出一個字符串。使用方法:

int print ( string arg )

 


print() 是一個語言結構而非函數,因此它無法被變量函數調用。 請看下面的演示:)

<?php
print("Hello World");

print "print() also works without parentheses.";

print "This spans
multiple lines. The newlines will be
output as well";

print "This spans/nmultiple lines. The newlines will be/noutput as well.";

print "escaping characters is done /"Like this/".";

// You can use variables inside of a print statement
foo = "foobar";
bar = "barbaz";

print "foo is foo"; // foo is foobar

// You can also use arrays
bar = array("value" => "foo");

print "this is {bar['value']} !"; // this is foo !

// Using single quotes will print the variable name, not the value
print 'foo is foo'; // foo is foo

// If you are not using any other characters, you can just print variables
print foo; // foobar

print <<<END
This uses the "here document" syntax to output
multiple lines with variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon no extra whitespace!
END;
?>

注意: 由于這是一個語言結構而非函數,因此它無法被變量函數調用。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 炎陵县| 米泉市| 加查县| 西贡区| 元阳县| 昌邑市| 宁强县| 通州区| 岚皋县| 体育| 常州市| 吉安市| 余江县| 静海县| 柳州市| 禹州市| 子长县| 监利县| 车致| 仙居县| 贡觉县| 沂源县| 平舆县| 新宁县| 陕西省| 潢川县| 永和县| 南城县| 定结县| 安宁市| 罗平县| 新密市| 嵊泗县| 太原市| 商南县| 遵化市| 响水县| 西丰县| 西丰县| 葵青区| 庆城县|