PHP code example of alirezasalehizadeh / quick-array
1. Go to this page and download the library: Download alirezasalehizadeh/quick-array library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
alirezasalehizadeh / quick-array example snippets
$arr = new QuickArray(5);
$arr->__construct(int $size) // Constructs a new fixed array
$arr->size():int // Returns the size of the array
$arr->current():mixed // Return current array entry
$arr->push($index, $value) // Push new element to QuickArray
$arr->pushArray(array $array, bool $preserveKeys = true):(new SplFixedArray) // Import a PHP array in a SplFixedArray instance
$arr->key():int // Return current array index
$arr->next():void // Move to next entry
$arr->exists($index):bool // Returns whether the requested index exists
$arr->get($index) // Returns the value at the specified index
$arr->set($index, $value) // Sets a new value at a specified index
$arr->unset($index) // Unsets the value at the specified $index
$arr->rewind() // Rewind iterator back to the start
$arr->resize(int $size):bool // Change the size of an array
$arr->toArray() // Returns a PHP array from the fixed array
$arr->valid():bool // Check whether the array contains more elements
$arr->each($callback):array // Applies the callback to the elements of the array
$arr->__wakeup() // Reinitialises the array after being unserialised