亚洲欧美日韩综合系列在线_91精品人妻一区二区_欧美大肥婆一级特大AA片_九色91视频免费观看_亚洲综合国产精品_av中文字幕在线不卡_久久精品色综合网_看黄色视频的软件_无卡无码高清中文字幕码2024_亚洲欧美日韩天堂网

為什么要在PHP中同時檢查isset()和!empty()函數(shù)

來源:轉(zhuǎn)載 發(fā)布時間:2019-03-23 16:11:17 閱讀量:1073

isset()函數(shù)是PHP中的內(nèi)置函數(shù),它檢查變量是否已設(shè)置且不為NULL。此函數(shù)還檢查聲明的變量,數(shù)組或數(shù)組鍵是否具有空值,如果是,isset()返回false,它在所有其他可能的情況下返回true。

語法:

1

bool isset( $var, mixed )

參數(shù):此函數(shù)接受多個參數(shù)。這個函數(shù)的第一個參數(shù)是$ var。此參數(shù)用于存儲變量的值。

例:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

<?php

   

$num = '0';

   

if( isset( $num ) ) {

    print_r(" $num is set with isset function <br>");

}

   

// 聲明一個空數(shù)組

$array = array(); 

     

echo isset($array['geeks']) ? 

'array is set.' 'array is not set.'

?>

輸出:

1

2

0 is set with isset function

array is not set.

empty()函數(shù)是一種語言構(gòu)造,用于確定給定變量是空還是NULL。!empty()函數(shù)是empty()函數(shù)的否定或補(bǔ)充。empty()函數(shù)與!isset()函數(shù)相當(dāng),而!empty()函數(shù)等于isset()函數(shù)。

例:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

<?php

   

   

$temp = 0;

   

if (empty($temp)) {

    echo $temp . ' is considered empty';

}

   

echo "\n";

   

$new = 1;

if (!empty($new)) {

    echo $new . ' is considered set';

}

?>

輸出:

1

2

0 is considered empty

1 is considered set

檢查兩個函數(shù)的原因:

isset()和!empty()函數(shù)類似,兩者都將返回相同的結(jié)果。但唯一的區(qū)別是!當(dāng)變量不存在時,empty()函數(shù)不會生成任何警告或電子通知。它足以使用任何一個功能。通過將兩個功能合并到程序中會導(dǎo)致時間流逝和不必要的內(nèi)存使用。

例:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

<?php

 

$num = '0';

   

if( isset ( $num ) ) {

    print_r( $num . " is set with isset function");

}

   

echo "\n";

   

$num = 1;

   

if( !empty ( $num ) ) {

    print_r($num . " is set with !empty function");

}

輸出:

1

2

0 is set with isset function

1 is set with !empty function


標(biāo)簽: PHP
分享:
評論:
你還沒有登錄,請先