Anemone::__destruct()

The desctructor.

Table of Contents
  1. Description
  2. Example

Description

Anemone::__destruct();

This method will be called when you unset an Anemone instance. Normally you’d use this to clear the memory stored in an Anemone instance, but the instance data is usually so small that doing this won’t give you a noticeable increase in performance. You are probably a very strict person if you can get to this point.

Example

unset($anemone);

Anemone::__destruct()

The desctructor.

Anemone::any()

Checks if at least one item in the data passes the test.

Anemone::is()

Filters the data so that only items that pass the test are left.

Anemone::not()

Filters the data so that only items that do not pass the test are left.

Anemone::pluck()

Returns a new data set contains values from the key on every item.