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,225
PHP 8년 전 조회 2,133
node.js 8년 전 조회 1,712
node.js 8년 전 조회 2,156
node.js 8년 전 조회 1,880
PHP 8년 전 조회 2,362
PHP 8년 전 조회 2,507
PHP 8년 전 조회 2,355
PHP 8년 전 조회 2,372
PHP 8년 전 조회 2,567
PHP 8년 전 조회 1,933
PHP 8년 전 조회 2,421
PHP 8년 전 조회 2,181
PHP 8년 전 조회 2,237
PHP 8년 전 조회 2,306
PHP 8년 전 조회 2,649
PHP 8년 전 조회 2,233
node.js 8년 전 조회 2,040
jQuery 8년 전 조회 1,702
jQuery 8년 전 조회 1,776
jQuery 8년 전 조회 2,115
PHP 8년 전 조회 2,174
PHP 8년 전 조회 2,434
PHP 8년 전 조회 2,376
jQuery 8년 전 조회 1,455
jQuery 8년 전 조회 1,411
jQuery 8년 전 조회 1,945
PHP 8년 전 조회 2,267
PHP 8년 전 조회 1,773
PHP 8년 전 조회 2,498
🐛 버그신고