PHP if

1 개요[ | ]

PHP if
  • PHP 조건문
if(43>42) echo('hello');
if(43>42) {
	echo('hello');
}
<?php
if(43>42):
	echo('hello');
endif
?>
<?php if(43>42): ?>
	hello
<?php endif ?>

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}