본문 바로가기

프로그래밍

<BR> <BR /> <BR/> 차이 결론은 다 똑같은 짓이지만, 사용하자. HTML5 에서 정식 사용은 이다. HTML5에서 줄 바뀜이 내용의 요소일 때는 을 사용해도 된다. 하지만 단락을 구분하는 표현적인 요소로서는 태그를 사용해야 한다. 을 사용해서 줄 바뀜을 계속하면서 단락 구분으로 사용하지 말라는 의도다. xhtml에서는 태그를 열었을 때, 반드시 / 로 닫아줘야해서 사용했음. 단 오래된 브라우저에서는 을 하나의 다른 태그로 인식했기 때문에 를 사용해서 호환성을 유지했음. 더보기
PHP include 와 require 차이 참고 https://stackoverflow.com/questions/3633900/difference-between-include-and-require-in-php Difference between "include" and "require" in php Is there any difference between them? Is using them a matter of preference? Does using one over the other produce any advantages? Which is better for security? stackoverflow.com 둘 다 지시한 파일을 로드한다. 다만 에러 상황이 발생할 때 차이가 있다. require() 의 경우는 fatal error 를 뿜으며, .. 더보기
PHP 배열을 문자열로 쉽게 만들기 결론적으로 implode() 함수를 사용하면 쉽다. ​ 함수 설명 참조 링크 https://www.php.net/manual/en/function.implode.php PHP: implode - Manual It's not obvious from the samples, if/how associative arrays are handled. The "implode" function acts on the array "values", disregarding any keys: 'four', 'five', '3rd' => 'six' );echo implode( ',', $a ),'/', implode( ',', $b );?>outputs:one,two,three/fou www.php.net ​ 위 예제를 보면 $a.. 더보기