\

Namespaces

Cocur
Microsoft
MVC
PHP
PhpDotNet
System

Classes

AES128CBC AES-128-CBC
App
App
Arguments 这个模块是为了统一查询参数的获取方式而设定的
ArrayList A dynamics array object. Implements the System.Collections.IList interface using an array whose size is dynamically increased as required.To browse the .NET Framework source code for this type, see the Reference Source.
c
Collection
CommandLine
CommandLineParser 命令行字符串解析器模块
console 用户调试记录器 这个模块所记录的值会在调试器视图的Console页面上面显示出来
Conversion 模拟VisualBasic之中的一些简单的数据类型转换关键词
CURLExtensions
DataURI
DbPaging 数据库查询数据分页帮助工具
debugView 调试器的输出视图引擎 必须要为web应用程序定义一个访问控制器,这个调试器才可以正常工作
Dictionary Represents a collection of keys and values.To browse the .NET Framework source code for this type, see the Reference Source.
dotnet dotnet package manager, you must include this module at first.
dotnetDebugger
dotnetException
DotNetRegistry 框架的配置文件的键名列表
Enumerable Provides a set of static (Shared in Visual Basic) methods for querying objects that implement IEnumerable<T>.
File Provides static methods for the creation, copying, deletion, moving, and opening of a single file, and aids in the creation of System.IO.FileStream objects.To browse the .NET Framework source code for this type, see the Reference Source.
FileSystem Provides properties and methods for working with drives, files, and directories in VisualBasic.
ICollection Defines size, enumerators, and synchronization methods for all nongeneric collections.
IEnumerator Supports a simple iteration over a non-generic collection. And Provides a set of static (Shared in ``Visual Basic``) methods for querying objects that implement ``System.Collections.Generic.IEnumerable<T>``.
IndexOf
Interaction
LogEntry
LogFile
LogicalExpression 逻辑表达式的模型
MSDN
Path
PushServer
Queue Represents a first-in, first-out collection of objects.
Regex Represents an immutable regular expression.To browse the .NET Framework source code for this type, see the Reference Source.
REST
Restrictions 对某一个服务器资源进行用户访问量的限制
RFC7231Error Custom error page supports
Router REST api handler
ScriptBuilder 在StringBuilder的基础之上增加了更加方便的字符串替换方法
Serialization 这个模块之中提供了JSON以及XML序列化和反序列化这两种操作的简写
SqlFormatter SQL Formatter is a collection of utilities for debugging SQL queries.
Stack Represents a variable size last-in-first-out (LIFO) collection of instances of the same specified type.
StackFrame
StackTrace Represents a stack trace, which is an ordered collection of one or more stack frames.
StringBuilder Represents a mutable string of characters.
StringHelpers String helper extensions
Table WebApp data model.
taskhost 定时任务的宿主进程
test
Ubench
URL URL帮助类
User
Utils PHP WEB programming utils from php.NET framework
Websocket
WsAppHandler
XmlParser Xml file handler
ZipLib

Constants

APP_DEBUG

APP_DEBUG = false

这个常数会影响框架的调试器的输出行为,默认是关闭调试器

APP_DEBUG

APP_DEBUG = true

DEFAULT_AUTH_KEY

DEFAULT_AUTH_KEY = "DEFAULT_AUTH_KEY"

DEFAULT_LANGUAGE

DEFAULT_LANGUAGE = "DEFAULT_LANGUAGE"

ERR_HANDLER

ERR_HANDLER = "ERR_HANDLER"

日志文件的文件路径

ERR_HANDLER_DISABLE

ERR_HANDLER_DISABLE = "ERR_HANDLER_DISABLE"

是否禁用掉框架的错误处理工具

FRAMEWORK_DEBUG

FRAMEWORK_DEBUG = false

进行框架内部的调试使用的一个常量

IS_CLI

IS_CLI = php_sapi_name() === 'cli'

Php script running in a cli environment?

IS_GET

IS_GET = false

当前的访问请求是否是一个GET请求

IS_POST

IS_POST = false

当前的访问请求是否是一个POST请求

MVC_VIEW_ROOT

MVC_VIEW_ROOT = "MVC_VIEW_ROOT"

默认的模板文档的文件夹为根文件夹下面的命名为html的文件夹

PHP_DOTNET

PHP_DOTNET = dirname(__FILE__) . "/Framework"

PHP.NET框架的根文件夹位置 获取得到package.php这个文件的所处的文件夹的位置

RFC7231

RFC7231 = "RFC7231"

自定义错误页面的文件夹位置,403 404 500等

SITE_PATH

SITE_PATH = getcwd()

SITE_PATH

SITE_PATH = dirname(__FILE__)

Functions

andalso()

andalso(  $a,   $b = null) : \LogicalExpression

对多个逻辑表达式的与运算

Parameters

$a
$b

Returns

\LogicalExpression

between()

between(  $a,   $b) 

在区间中,在数据库查询之中判断目标字段是否在给定的区间之中

Parameters

$a
$b

eq()

eq(  $value) 

等号,在数据库查询之中判断目标字段是否与目标值相等

Parameters

$value

exor()

exor(  $a,   $b = null) : \LogicalExpression

对多个逻辑表达式的异或运算

Parameters

$a
$b

Returns

\LogicalExpression

gt()

gt(  $value) 

大于,在数据库查询之中判断目标字段是否大于给定值

Parameters

$value

gt_eq()

gt_eq(  $value) 

大于等于,在数据库查询之中判断目标字段是否大于等于给定值

Parameters

$value

Imports()

Imports(string  $namespace) 

Global function for load php.NET package modules.

Parameters

string $namespace

php module file path

in()

in(  $values) 

在集合中,在数据库查询之中判断目标字段值是否在给定的集合中

Parameters

$values

like()

like(  $value) 

字符串相似,在数据库查询之中判断目标字段是否和给定的模式相似

Parameters

$value

lt()

lt(  $value) 

小于,在数据库查询之中判断目标字段是否小于给定值

Parameters

$value

lt_eq()

lt_eq(  $value) 

小于等于,在数据库查询之中判断目标字段是否小于等于给定值

Parameters

$value

month()

month(boolean  $textual = false) : string

Get current month value

Numeric representation of a month, with leading zeros, by default.

Parameters

boolean $textual

A short textual representation of a month, three letters, example as: Jan through Dec.

Returns

string

Examples

through 12
** File not found : 01 **

not_between()

not_between(  $a,   $b) 

不在区间中,在数据库查询之中判断目标字段是否不存在于给定的区间之中

Parameters

$a
$b

not_eq()

not_eq(  $value) 

不等于,在数据库查询之中判断目标字段是否不与目标值相等

Parameters

$value

not_in()

not_in(  $values) 

不在集合中,在数据库查询之中判断目标字段值是否不再给定的集合中

Parameters

$values

not_like()

not_like(  $value) 

字符串不相似,在数据库查询之中判断目标字段是否和给定的模式不相似

Parameters

$value

orelse()

orelse(  $a,   $b = null) : \LogicalExpression

对多个逻辑表达式的或运算

Parameters

$a
$b

Returns

\LogicalExpression

Redirect()

Redirect(  $URL) 

对用户的浏览器进行重定向,支持路由规则。 注意,在使用这个函数进行重定向之后,脚本将会从这里退出执行

Parameters

$URL

session()

session(string  $name, mixed  $value) 

Write session value

Parameters

string $name

The session variable name

mixed $value

Value

sleepTest()

sleepTest() 

year()

year(boolean  $short = false) : string

Get current year value

A full numeric representation of a year, 4 digits, by default

Parameters

boolean $short

A two digit representation of a year, example as: 99 or 03

Returns

string

Examples

or 2003
** File not found : 1999 **