|
PHP5中文手册
(PHP 4, PHP 5) print — Output a string 说明
int print
( string $arg
)
Outputs arg . print() is not actually a real function (it is a language construct) so you are not required to use parentheses with its argument list. For a short discussion about the differences between print() and echo(), see this FAQTs Knowledge Base Article: » http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40 参数
返回值Returns 1, always. 范例
Example#1 print() examples
<?php 注释
|