La función Ds\Stack::capacity() es una función incorporada en PHP que se utiliza para devolver la capacidad actual de la pila.
Sintaxis:
int Ds\Stack::capacity( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve la capacidad actual de la pila.
Los siguientes programas ilustran la función Ds\Stack::capacity() en PHP:
Programa 1:
<?php // Declare new Stack $stack = new \Ds\Stack(); // Use capacity() function to check // the current capacity var_dump($stack->capacity()); ?>
Producción:
int(8)
Programa 2:
<?php // Declare new Stack $stack = new \Ds\Stack(); echo("Current Capacity is: "); // Use capacity() function // to check the current capacity var_dump($stack->capacity()); echo("Current Capacity is: "); // Use allocate() function to // allocate capacity $stack->allocate(5); // Display the allocated vector // capacity var_dump($stack->capacity()); echo("Current Capacity is: "); // Use allocate() function to // allocate capacity $stack->allocate(120); // Display the allocated vector // capacity var_dump($stack->capacity()); ?>
Producción:
Current Capacity is: int(8) Current Capacity is: int(8) Current Capacity is: int(120)
Referencia: https://www.php.net/manual/en/ds-stack.capacity.php