📜  PHP | Ds\Sequence push()函数

📅  最后修改于: 2022-05-13 01:56:45.969000             🧑  作者: Mango

PHP | Ds\Sequence push()函数

Ds\Sequence::push()函数是PHP中的一个内置函数,可将值添加到序列的末尾。

句法:

void abstract public Ds\Sequence::push( $values )

参数:此函数接受包含一个或多个值的单个参数$ values。它保存要添加到序列中的值。

返回值:该函数不返回任何值。

下面的程序说明了PHP中的Ds\Sequence::push()函数:

方案一:

push(24);
  
// Use push() function to add
// element in the sequence
$seq->push("S");
  
// Use push() function to add
// element in the sequence
$seq->push("Geeks");
  
// Use push() function to add
// element in the sequence
$seq->push(2);
  
var_dump($seq);
?>

输出:

object(Ds\Vector)#1 (8) {
  [0]=>
  int(12)
  [1]=>
  int(15)
  [2]=>
  int(18)
  [3]=>
  int(20)
  [4]=>
  int(24)
  [5]=>
  string(1) "S"
  [6]=>
  string(5) "Geeks"
  [7]=>
  int(2)
}

方案二:

push($val);
}
  
var_dump($seq);
?>

输出:

object(Ds\Vector)#1 (8) {
  [0]=>
  int(12)
  [1]=>
  int(15)
  [2]=>
  int(18)
  [3]=>
  int(20)
  [4]=>
  string(1) "g"
  [5]=>
  string(1) "e"
  [6]=>
  string(1) "e"
  [7]=>
  string(1) "k"
}

参考: http: PHP。 PHP