Welcome to Knowledge Base!

KB at your finger tips

This is one stop global knowledge base where you can learn about all the products, solutions and support features.

Categories
All
Web-PHP
PHP / APCUIterator::getTotalCount — DevDocs

APCUIterator::getTotalCount

(PECL apcu >= 5.0.0)

APCUIterator::getTotalCount Get total count

Description

public APCUIterator::getTotalCount(): int

Get the total count.

Warning

This function is currently not documented; only its argument list is available.

Parameters

This function has no parameters.

Return Values

The total count.

See Also

  • APCUIterator::getTotalHits() - Get total cache hits
  • APCUIterator::getTotalSize() - Get total cache size
  • apcu_cache_info() - Retrieves cached information from APCu's data store
PHP / APCUIterator::getTotalHits — DevDocs

APCUIterator::getTotalHits

(PECL apcu >= 5.0.0)

APCUIterator::getTotalHits Get total cache hits

Description

public APCUIterator::getTotalHits(): int

Gets the total number of cache hits.

Warning

This function is currently not documented; only its argument list is available.

Parameters

This function has no parameters.

Return Values

The number of hits on success, or false on failure.

See Also

  • APCUIterator::getTotalCount() - Get total count
  • APCUIterator::getTotalSize() - Get total cache size
  • apcu_cache_info() - Retrieves cached information from APCu's data store
Read article
PHP / APCUIterator::getTotalSize — DevDocs

APCUIterator::getTotalSize

(PECL apcu >= 5.0.0)

APCUIterator::getTotalSize Get total cache size

Description

public APCUIterator::getTotalSize(): int

Gets the total cache size.

Warning

This function is currently not documented; only its argument list is available.

Parameters

This function has no parameters.

Return Values

The total cache size.

See Also

  • APCUIterator::getTotalCount() - Get total count
  • APCUIterator::getTotalHits() - Get total cache hits
  • apc_cache_info()
Read article
PHP / APCUIterator::key — DevDocs

APCUIterator::key

(PECL apcu >= 5.0.0)

APCUIterator::key Get iterator key

Description

public APCUIterator::key(): string

Gets the current iterator key.

Parameters

This function has no parameters.

Return Values

Returns the key on success, or false upon failure.

See Also

  • APCUIterator::current() - Get current item
  • Iterator::key() - Return the key of the current element
Read article
PHP / APCUIterator::next — DevDocs

APCUIterator::next

(PECL apcu >= 5.0.0)

APCUIterator::next Move pointer to next item

Description

public APCUIterator::next(): bool

Moves the iterator pointer to the next element.

Parameters

This function has no parameters.

Return Values

Returns true on success or false on failure.

See Also

  • APCUIterator::current() - Get current item
  • APCUIterator::rewind() - Rewinds iterator
  • Iterator::next() - Move forward to next element
Read article
PHP / APCUIterator::rewind — DevDocs

APCUIterator::rewind

(PECL apcu >= 5.0.0)

APCUIterator::rewind Rewinds iterator

Description

public APCUIterator::rewind(): void

Rewinds back the iterator to the first element.

Parameters

This function has no parameters.

Return Values

No value is returned.

See Also

  • APCUIterator::next() - Move pointer to next item
  • Iterator::next() - Move forward to next element
Read article