if(!$result) 혹은 if(isset($result)) 결과값 Null 표시 > 기술자료 | 해피정닷컴

if(!$result) 혹은 if(isset($result)) 결과값 Null 표시 > 기술자료

본문 바로가기

사이트 내 전체검색

if(!$result) 혹은 if(isset($result)) 결과값 Null 표시 > 기술자료

PHP if(!$result) 혹은 if(isset($result)) 결과값 Null 표시

페이지 정보


본문

<?php
$query = "select * from 테이블이름 order by 조건절 desc";
$result = mysql_query($query);
echo $result;    //<<--- 출력해보면 Resource id #2 가 나옵니다.
if(!$result) {    //<<----- 이것이 기능을 다 하지 못함..
  echo "등록된 내용이 없습니다!\n";   //<<--- 메세지!
}
else {
  while($row = mysql_fetch_array($result)) {
    echo $row[name];
  }
}
?>



isset  -  변수가 설정되지 않은 경우 NULL   /   Determine if a variable is set and is not NULL
PHP버전이 올라가면서  !  대신에 변수값이 있나 없나를 확인하는  isset  함수를 사용
<?php
$query = "select * from 테이블이름 order by 조건절 desc";
$result = mysql_query($query);
$data = mysql_fetch_array($result);
$isset_check = $data["mb_id"];  // 필드 데이타 하나를 호출합니다.
//echo $isset_check;  // 정상보이는지 확인

if(isset($isset_check)) { // 자료 있을때
  while($row = mysql_fetch_array($result)) {
    echo $row[name];
  }
} else { // 자료 없을때
  echo "등록된 내용이 없습니다!\n";   //<<--- 메세지!
}



5.4.0 이후 : 문자열이 아닌 숫자 오프셋을 선택하면 이제 반환값이 FALSE 로 변경
PHP 5.4 changes how isset() behaves when passed string offsets.
<?php
$expected_array_got_string = 'somestring';
var_dump(isset($expected_array_got_string['some_key']));
var_dump(isset($expected_array_got_string[0]));
var_dump(isset($expected_array_got_string['0']));
var_dump(isset($expected_array_got_string[0.5]));
var_dump(isset($expected_array_got_string['0.5']));
var_dump(isset($expected_array_got_string['0 Mostel']));
?>
Output of the above example in PHP 5.3 -> 5.4:
    5.3      -->       5.4
bool(true)  -->  bool(false)
bool(true)  -->  bool(true)
bool(true)  -->  bool(true)
bool(true)  -->  bool(true)
bool(true)  -->  bool(false)
bool(true)  -->  bool(false)



관련자료
http://phpschool.com/link/qna_db/47130 
http://www.phpschool.com/link/qna_html/34626 
http://www.php.net/manual/en/function.isset.php

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 79 페이지
  • RSS
기술자료 목록
열람
PHP   21799  2012-03-16 23:55 ~ 2014-12-28 00:00  
1080
Adobe   20279  2012-03-16 17:16  
1079
HTML   15000  2012-03-16 17:10  
1078
ClassicASP   12069  2012-03-15 02:08  
1077
ClassicASP   21720  2012-03-15 01:58 ~ 2016-10-21 00:00  
1076
ClassicASP   25027  2012-03-15 00:08 ~ 2016-02-29 00:00  
1075
JavaScript   15990  2012-03-12 23:33  
1074
PHP   22871  2012-03-04 17:29  
1073
PHP   21779  2012-03-04 17:09 ~ 2023-01-08 11:38  
1072
Linux   18298  2012-03-02 18:38  
1071
전자결제   12265  2012-03-02 14:34  
1070
영카트   12821  2012-03-02 13:03  
1069
PHP   27540  2012-03-01 21:47 ~ 2012-04-08 00:00  
1068
MySQL   17887  2012-02-29 22:30  
1067
그누보드   11525  2012-02-27 14:09  
1066
ClassicASP   34669  2012-02-21 00:14 ~ 2014-11-11 00:00  
1065
그누보드   15569  2012-02-12 23:59  
1064
Search   22561  2012-02-11 08:13 ~ 2022-04-15 19:42  
1063
PHP   15636  2012-02-11 08:05  
1062
그누보드   12486  2012-02-10 22:14 ~ 2016-11-21 00:00  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.