PHP print() 函數是重要的函數,用於輸出一個或多個字符串。
注意:print() 函數實際上並不是一個函數,所以不需要使用括號。
用法:
int print ( string $arg );
用法:
int print ( string $arg );
參數 | 描述 | 必需/可選 |
---|---|---|
string | 指定一個或多個要發送輸出的字符串。 | Required |
例子1
<?php
$str = "Hello PHP";
print $str;
?>
輸出:
Hello PHP
例子2
<?php
$str = "Hello PHP!";
print $str;
print "<br>It is Server Side Scripting Language";
?>
輸出:
Hello PHP! It is Server Side Scripting Language
例子3
<?php
$str1="Hello PHP!";
$str2="PHP is server side scripting language";
print $str1 . " " . $str2;
?>
輸出:
Hello PHP! PHP is server side scripting language
示例 4
<?php
$age=array("JOHN"=>"35");
print "JOHN is " . $age['JOHN'] . " years old.";
?>
輸出:
JOHN is 35 years old.
相關用法
- PHP print_r()用法及代碼示例
- PHP prev()用法及代碼示例
- PHP preg_filter()用法及代碼示例
- PHP preg_split()用法及代碼示例
- PHP preg_replace()用法及代碼示例
- PHP preg_grep()用法及代碼示例
- PHP preg_match()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP pos()用法及代碼示例
- PHP parse_str()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP php_strip_whitespace()用法及代碼示例
- PHP pack()用法及代碼示例
- PHP pow()用法及代碼示例
- PHP parse_url()用法及代碼示例
- PHP png2wbmp()用法及代碼示例
- PHP popen( )用法及代碼示例
- PHP pathinfo( )用法及代碼示例
- PHP pclose( )用法及代碼示例
- PHP pi()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP print() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。