Libraries tagged by array methods
atlas89/buble-sort
10 Downloads
Sort array used buble sort method
somephp/arraycache
8 Downloads
Quickly store and retrieve arrays. Persist data with two methods, set and get. Enabling OPcache is recommended for speed.
mitrm/yii2-sentry-log
86 Downloads
A Yii2 component for Sentry allowing data arrays passing through Yii2 logging methods
ecohead/symfony-form-generator-bundle
8 Downloads
A set of methods to create form types with chained methods instead of plain arrays.
cylab/php-spark
779 Downloads
A wrapper around arrays that mimics the MapReduce methods of Apache Spark
sefirosweb/laravel-general-helper
142 Downloads
A bundle of helpers for develop, contains method for generate excels , csv, array optimizations and more
nicmart/treebuilder
2 Downloads
TreeBuilder offers some fast methods to transform tree structures (arrays, object graphs, xml documents) to php array
landlib/treealgorithms
31 Downloads
This group of methods for work with tree structure. Provide methods build tree from flat array, find node in the tree by id, walk tree and execulte callback function for each node. Node of the tree has fields like as id, parent_id, children. Concrete names of the tree node fields can be configured with TreeAlgorithms properties idFieldName, parentIdFieldName, childsFieldName. Also exists javascript release, search lamzin-andrey/landlib on github.
flextype-components/debug
3452 Downloads
Debug component provides a simple methods for debugging variables, objects, arrays, etc by outputting information to the display.
affinity4/collection
12 Downloads
Iterable Collections with useful helper methods. Take control of your arrays!
voilab/csv
92 Downloads
CSV parser that uses `fgetcsv` to parse file, string, streams or arrays, extract columns and provide per-column method to manipulate data.
xmlutils/xmlutils
82 Downloads
This class contains methods to convert a xml tree into a complex array with nested properties and to convert a complex array object into an xml tree.
srjlewis/aura-sql
12 Downloads
A PDO extension that provides lazy connections, array quoting, query profiling, value binding, and convenience methods for common fetch styles. Because it extends PDO, existing code that uses PDO can use this without any changes to the existing code.
gotrecillo/extractor
18 Downloads
Simple way to prepare arrays for a safe and clean use of the extract php method
cbeyersdorf/easybill
1 Downloads
The first version of the easybill REST API. [CHANGELOG](https://api.easybill.de/rest/v1/CHANGELOG.md) ## Authentication You can choose between two available methods: `Basic Auth` or `Bearer Token`. In each HTTP request, one of the following HTTP headers is required: ``` # Basic Auth Authorization: Basic base64_encode(':') # Bearer Token Authorization: Bearer ``` ## Limitations ### Request Limit * PLUS: 10 requests per minute * BUSINESS: 60 requests per minute If the limit is exceeded, you will receive the HTTP error: `429 Too Many Requests` ### Result Limit All result lists are limited to 100 by default. This limit can be increased by the query parameter `limit` to a maximum of 1000. ## Query filter Many list resources can be filtered. In `/documents` you can filter e.g. by number with `/documents?number=111028654`. If you want to filter multiple numbers, you can either enter them separated by commas `/documents?number=111028654,222006895` or as an array `/documents?number[]=111028654&number[]=222006895`. **Warning**: The maximum size of an HTTP request line in bytes is 4094. If this limit is exceeded, you will receive the HTTP error: `414 Request-URI Too Large` ### Escape commas in query You can escape commans in query `name=Patrick\, Peter` if you submit the header `X-Easybill-Escape: true` in your request. ## Property login_id This is the login of your admin or employee account. ## Date and Date-Time format Please use the timezone `Europe/Berlin`. * **date** = *Y-m-d* = `2016-12-31` * **date-time** = *Y-m-d H:i:s* = `2016-12-31 03:13:37` Date or datetime can be `null` because the attributes have been added later and the entry is older.