print - 문자열을 출력합니다. > 개발자팁

개발자팁

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

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

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

?>


추천
0

댓글 1개

전체 5,352
개발자팁 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT