Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sqlite3(3) [php man page]

SQLITE3(3)																SQLITE3(3)

The SQLite3 class

INTRODUCTION
A class that interfaces SQLite 3 databases. CLASS SYNOPSIS
SQLite3 SQLite3 Methods o public bool SQLite3::busyTimeout (int $msecs) o public int SQLite3::changes (void ) o public bool SQLite3::close (void ) o public SQLite3::__construct (string $filename, [int $flags], [string $encryption_key]) o public bool SQLite3::createAggregate (string $name, mixed $step_callback, mixed $final_callback, [int $argument_count = -1]) o public bool SQLite3::createCollation (string $name, callable $callback) o public bool SQLite3::createFunction (string $name, mixed $callback, [int $argument_count = -1]) o publicstatic string SQLite3::escapeString (string $value) o public bool SQLite3::exec (string $query) o public int SQLite3::lastErrorCode (void ) o public string SQLite3::lastErrorMsg (void ) o public int SQLite3::lastInsertRowID (void ) o public bool SQLite3::loadExtension (string $shared_library) o public void SQLite3::open (string $filename, [int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE], [string $encryption_key]) o public SQLite3Stmt SQLite3::prepare (string $query) o public SQLite3Result SQLite3::query (string $query) o public mixed SQLite3::querySingle (string $query, [bool $entire_row = false]) o publicstatic array SQLite3::version (void ) PHP Documentation Group SQLITE3(3)

Check Out this Related Man Page

REFLECTIONFUNCTION(3)							 1						     REFLECTIONFUNCTION(3)

The ReflectionFunction class

INTRODUCTION
The ReflectionFunction class reports information about a function. CLASS SYNOPSIS
ReflectionFunction ReflectionFunctionextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionFunction::IS_DEPRECATED262144 Properties o public$name Methods o public ReflectionFunction::__construct (mixed $name) o publicstatic string ReflectionFunction::export (string $name, [string $return]) o public Closure ReflectionFunction::getClosure (void ) o public mixed ReflectionFunction::invoke ([mixed $parameter], [mixed $...]) o public mixed ReflectionFunction::invokeArgs (array $args) o public bool ReflectionFunction::isDisabled (void ) o public string ReflectionFunction::__toString (void ) Inherited methods o finalprivate void ReflectionFunctionAbstract::__clone (void ) o public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass (void ) o public object ReflectionFunctionAbstract::getClosureThis (void ) o public string ReflectionFunctionAbstract::getDocComment (void ) o public int ReflectionFunctionAbstract::getEndLine (void ) o public ReflectionExtension ReflectionFunctionAbstract::getExtension (void ) o public string ReflectionFunctionAbstract::getExtensionName (void ) o public string ReflectionFunctionAbstract::getFileName (void ) o public string ReflectionFunctionAbstract::getName (void ) o public string ReflectionFunctionAbstract::getNamespaceName (void ) o public int ReflectionFunctionAbstract::getNumberOfParameters (void ) o public int ReflectionFunctionAbstract::getNumberOfRequiredParameters (void ) o public array ReflectionFunctionAbstract::getParameters (void ) o public string ReflectionFunctionAbstract::getShortName (void ) o public int ReflectionFunctionAbstract::getStartLine (void ) o public array ReflectionFunctionAbstract::getStaticVariables (void ) o public bool ReflectionFunctionAbstract::inNamespace (void ) o public bool ReflectionFunctionAbstract::isClosure (void ) o public bool ReflectionFunctionAbstract::isDeprecated (void ) o public bool ReflectionFunctionAbstract::isGenerator (void ) o public bool ReflectionFunctionAbstract::isInternal (void ) o public bool ReflectionFunctionAbstract::isUserDefined (void ) o public bool ReflectionFunctionAbstract::isVariadic (void ) o public bool ReflectionFunctionAbstract::returnsReference (void ) o abstractpublic void ReflectionFunctionAbstract::__toString (void ) PROPERTIES
o $name - Name of the function. Read-only, throws ReflectionException in attempt to write. PREDEFINED CONSTANTS
REFLECTIONFUNCTION MODIFIERS
o ReflectionFunction::IS_DEPRECATED - Indicates deprecated functions. PHP Documentation Group REFLECTIONFUNCTION(3)
Man Page