Ds \ Vector::get()函數是PHP中的內置函數,用於返回給定索引處的元素。
用法:
mixed public Ds\Vector::get( $index )
參數:該函數接受單個參數$index,該參數包含要在其上返回元素的索引(基於0的索引)。
返回值:此函數返回向量中給定索引處的元素。
異常:如果索引無效,則此函數返回OutOfRangeException。
以下示例程序旨在說明PHP中的Ds \ Vector::get()函數:
程序1:
<?php
// Create new Vector
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
// Use get() function to find the
// element at given index
var_dump($vector->get(3));
var_dump($vector->get(1));
var_dump($vector->get(4));
?>
輸出:
int(4) int(2) int(5)
程序2:
<?php
// Create new Vector
$vector = new \Ds\Vector(["geeks", "for", "geeks"]);
// Use get() function to find the
// element at given index
var_dump($vector->get(0));
var_dump($vector->get(1));
var_dump($vector->get(2));
?>
輸出:
string(5) "geeks" string(3) "for" string(5) "geeks"
參考: http://php.net/manual/en/ds-vector.get.php
相關用法
- p5.js str()用法及代碼示例
- p5.js min()用法及代碼示例
- PHP end()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js hue()用法及代碼示例
- PHP pos()用法及代碼示例
- p5.js hex()用法及代碼示例
- p5.js red()用法及代碼示例
- p5.js tan()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js sin()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | Ds\Vector get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。