print - 문자열을 출력합니다.

print - 문자열을 출력합니다.

 

설명 ¶

 

int print ( string $arg )

출력 arg.

 

print 는 실제 함수가 아니며 (언어 구조이므로) 인수 목록에 괄호를 사용할 필요가 없습니다.

 

에코 의 주된 차이점 은 print 가 단일 인수만을 받아들이고 항상 1을 반환한다는 것입니다.

 

매개 변수 ¶

 

arg

입력 데이터.

 

반환 값 ¶

 

항상 1 을 반환합니다 .

 

예 ¶

 

예제 # 1 인쇄 예제

 

<?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 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;

?>


|

댓글 1개

감사합니다!
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 8년 전 조회 2,269
PHP 8년 전 조회 2,175
node.js 8년 전 조회 1,754
node.js 8년 전 조회 2,199
node.js 8년 전 조회 1,913
PHP 8년 전 조회 2,399
PHP 8년 전 조회 2,536
PHP 8년 전 조회 2,388
PHP 8년 전 조회 2,422
PHP 8년 전 조회 2,590
PHP 8년 전 조회 1,968
PHP 8년 전 조회 2,466
PHP 8년 전 조회 2,224
PHP 8년 전 조회 2,269
PHP 8년 전 조회 2,344
PHP 8년 전 조회 2,682
PHP 8년 전 조회 2,251
node.js 8년 전 조회 2,087
jQuery 8년 전 조회 1,726
jQuery 8년 전 조회 1,813
jQuery 8년 전 조회 2,142
PHP 8년 전 조회 2,211
PHP 8년 전 조회 2,471
PHP 8년 전 조회 2,417
jQuery 8년 전 조회 1,486
jQuery 8년 전 조회 1,445
jQuery 8년 전 조회 1,986
PHP 8년 전 조회 2,307
PHP 8년 전 조회 1,804
PHP 8년 전 조회 2,539
🐛 버그신고