Ds\Pair::isEmpty

(没有可用的版本信息,可能只存在于 Git 中)

Ds\Pair::isEmpty返回对是否为空

描述

public Ds\Pair::isEmpty(): bool

返回对是否为空。

参数

此函数没有参数。

返回值

如果对为空,则返回 true,否则返回 false

示例

示例 #1 Ds\Pair::isEmpty() 示例

<?php
$a
= new \Ds\Pair("a", 1);
$b = new \Ds\Pair();

var_dump($a->isEmpty());
var_dump($b->isEmpty());
?>

上面的示例将输出类似于以下内容

bool(false)
bool(true)
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top