PHP - Ds\Pair::isEmpty() 函数



PHP 的Ds\Pair::isEmpty()函数检查该对是否为空。空对是指不包含任何元素的对。

如果当前对为空,则此函数返回布尔值“true”,否则返回“false”。

对类的isEmpty()函数在最新的 PHP 版本中不可用。确保您的系统中安装了适当版本的 PHP,否则您将遇到一些与错误相关的 issue。

语法

以下是 PHP Ds\Pair::isEmpty()函数的语法:

public bool Ds\Pair::isEmpty( void )

参数

此函数不接受任何参数。

返回值

如果该对为空,则此函数返回“true”,否则返回“false”。

示例

以下程序演示了 PHP Ds\Pair::isEmpty()函数的使用:

<?php 
   $pair = new \Ds\Pair("TP", "Tutorialspoint"); 
   echo "The original pair elements are: \n";
   print_r($pair);
   $res = $pair->isEmpty();
   echo "\nIs the pair is empty? ".$res;
?>

输出

由于此函数在最新的 PHP 版本中不可用,因此它将抛出以下错误:

The original pair elements are:
Ds\Pair Object
(
    [key] => TP
    [value] => Tutorialspoint
)
PHP Fatal error:  Uncaught Error: Call to undefined method Ds\Pair::isEmpty() 
in C:\Apache24\htdocs\index.php:5
Stack trace:
#0 {main}
  thrown in C:\Apache24\htdocs\index.php on line 5
php_function_reference.htm
广告