Procedural File: flatfile.php
Source Location: /flatfile.php
Classes:
Flatfile
Provides simple but powerful flatfile database storage and retrieval
WhereClause
Used to test rows in a database table, like the WHERE clause in an SQL statement.
NotWhere
Negates a where clause
SimpleWhereClause
Implements a single WHERE clause that does simple comparisons of a field with a value.
LikeWhereClause
Used to test rows in a database table, like the WHERE clause in an SQL statement.
ListWhereClause
WhereClause class to match a value from a list of items
CompositeWhereClause
Abstract class that combines zero or more WhereClause objects together.
OrWhereClause
CompositeWhereClause that does an OR on all its child WhereClauses.
AndWhereClause
CompositeWhereClause that does an AND on all its child WhereClauses.
OrderBy
Stores information about an ORDER BY clause
Page Details:
Simple but powerful flatfile database See http://lukeplant.me.uk/resources/flatfile/ for documentation and examples
Tags:
ASCENDING [line 39]
DESCENDING [line 41]
INTEGER_COMPARISON [line 34]
NUMERIC_COMPARISON [line 36]
STRING_COMPARISON [line 32]
intcmp [line 334]
void intcmp(
mixed $a, mixed $b)
|
|
equivalent of strcmp for comparing integers, used internally for sorting and comparing
numcmp [line 342]
void numcmp(
mixed $a, mixed $b)
|
|
equivalent of strcmp for comparing floats, used internally for sorting and comparing
|