수색…
비고
코드에 주석을 달 방법을 결정할 때 다음 팁을 유념하십시오.
한 줄 주석
한 줄 주석은 "//"또는 "#"로 시작합니다. 접하게되면 PHP 인터프리터가 오른쪽의 모든 텍스트를 무시합니다.
// This is a comment
# This is also a comment
echo "Hello World!"; // This is also a comment, beginning where we see "//"
멀티 라인 코멘트
다중 행 주석은 큰 코드 블록을 주석 처리하는 데 사용할 수 있습니다. /*
시작하여 */
끝납니다.
/* This is a multi-line comment.
It spans multiple lines.
This is still part of the comment.
*/
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow