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

· 2017-05-04 (목) 23:46:26 · 2703 · 1

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개

2022-09-02 (금) 15:03:58
감사합니다!
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
PHP 17-03-09 조회 2,766
PHP 17-03-09 조회 2,649
PHP 17-03-09 조회 2,859
jQuery 17-03-09 조회 2,297
jQuery 17-03-09 조회 2,176
jQuery 17-03-09 조회 2,122
PHP 17-03-08 조회 2,128
PHP 17-03-08 조회 2,306
PHP 17-03-08 조회 2,283
jQuery 17-03-08 조회 2,796
jQuery 17-03-08 조회 2,607
jQuery 17-03-08 조회 2,747
기타 17-03-08 조회 1.7만
기타 17-03-06 조회 2,587
PHP 17-03-01 조회 3,013
PHP 17-03-01 조회 3,526
PHP 17-03-01 조회 2,451
PHP 17-02-28 조회 2,132
PHP 17-02-28 조회 2,320
PHP 17-02-28 조회 2,528
PHP 17-02-27 조회 2,765
PHP 17-02-27 조회 2,626
PHP 17-02-27 조회 3,216
PHP 17-02-26 조회 2,569
PHP 17-02-26 조회 2,466
PHP 17-02-26 조회 2,853
PHP 17-02-25 조회 2,580
PHP 17-02-25 조회 2,629
PHP 17-02-25 조회 2,513
PHP 17-02-24 조회 2,975