블로그 이미지
암초보

calendar

1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31

Notice

Tag

03-29 19:59

'프로그래밍/PHP'에 해당되는 글 4

  1. 2014.11.13 PHP 수행 시간 측정
  2. 2014.09.26 php variable scope - if statements
  3. 2014.08.05 html tag 제거
  4. 2013.06.25 php 에서 excel로 저장시 br태그 문제
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
posted by 암초보
2014. 9. 26. 16:19 프로그래밍/PHP

If statement blocks do not have their own scope.


즉, 아래 코드는 "Hello..."을 출력할 것이다.


$cond = true;
if($cond) {
      $a = "Hello...";
}
echo $a;




'프로그래밍 > PHP' 카테고리의 다른 글

PHP 수행 시간 측정  (0) 2014.11.13
html tag 제거  (0) 2014.08.05
php 에서 excel로 저장시 br태그 문제  (0) 2013.06.25
posted by 암초보
2014. 8. 5. 10:46 프로그래밍/PHP

'프로그래밍 > PHP' 카테고리의 다른 글

PHP 수행 시간 측정  (0) 2014.11.13
php variable scope - if statements  (0) 2014.09.26
php 에서 excel로 저장시 br태그 문제  (0) 2013.06.25
posted by 암초보
2013. 6. 25. 16:07 프로그래밍/PHP

br태그가 들어간 셀은 여러 row로 나눠짐.


해결방법은


br 태그 스타일 추가하면 된다.

br { mso-data-placement:same-cell; }

'프로그래밍 > PHP' 카테고리의 다른 글

PHP 수행 시간 측정  (0) 2014.11.13
php variable scope - if statements  (0) 2014.09.26
html tag 제거  (0) 2014.08.05
posted by 암초보
prev 1 next