2014. 11. 13. 14:37
프로그래밍/PHP
'프로그래밍 > PHP' 카테고리의 다른 글
php variable scope - if statements (0) | 2014.09.26 |
---|---|
html tag 제거 (0) | 2014.08.05 |
php 에서 excel로 저장시 br태그 문제 (0) | 2013.06.25 |
php variable scope - if statements (0) | 2014.09.26 |
---|---|
html tag 제거 (0) | 2014.08.05 |
php 에서 excel로 저장시 br태그 문제 (0) | 2013.06.25 |
If statement blocks do not have their own scope.
즉, 아래 코드는 "Hello..."을 출력할 것이다.
$cond = true;
if($cond) {
$a = "Hello...";
}
echo $a;
PHP 수행 시간 측정 (0) | 2014.11.13 |
---|---|
html tag 제거 (0) | 2014.08.05 |
php 에서 excel로 저장시 br태그 문제 (0) | 2013.06.25 |
PHP 수행 시간 측정 (0) | 2014.11.13 |
---|---|
php variable scope - if statements (0) | 2014.09.26 |
php 에서 excel로 저장시 br태그 문제 (0) | 2013.06.25 |
br태그가 들어간 셀은 여러 row로 나눠짐.
해결방법은
br 태그 스타일 추가하면 된다.
br { mso-data-placement:same-cell; }
PHP 수행 시간 측정 (0) | 2014.11.13 |
---|---|
php variable scope - if statements (0) | 2014.09.26 |
html tag 제거 (0) | 2014.08.05 |