PHP | Ds\Set add()函数
Ds\Set::add()函数是PHP中的一个内置函数,用于将值添加到集合中。
句法:
void public Ds\Set::add( $values )
参数:此函数接受单个参数$values ,其中包含要添加到集合中的许多值。
返回值:此函数不返回任何值。
下面的程序说明了PHP中的Ds\Set::add()函数:
方案一:
add(1);
$set->add("Geeks");
$set->add("G");
$set->add(10);
var_dump($set);
?>
输出:
object(Ds\Set)#1 (4) {
[0]=>
int(1)
[1]=>
string(5) "Geeks"
[2]=>
string(1) "G"
[3]=>
int(10)
}
方案二:
add(10, 20, 30, "Geeks", "for");
print_r($set);
?>
输出:
Ds\Set Object
(
[0] => 10
[1] => 20
[2] => 30
[3] => Geeks
[4] => for
)
参考: http: PHP。 PHP