MethodNotImplemented
MethodNotImplemented = "This method have not implemented yet!"
This method have not implemented yet!
Usage:
die(dotnet::$MethodNotImplemented);
dotnet package manager, you must include this module at first.
在php之中有一个DOTNET类型:http://php.net/manual/en/class.dotnet.php 但是这个模块的使用有诸多的限制,假若使用本项目的时候,发现出现错误:
Fatal error: Cannot redeclare class dotnet in "mod\php.NET\package.php" on line 6
则应该要检查一下你的php服务器的设置是否是区分大小写的? 因为这个类名称dotnet假若不区分大小写的话,是和系统自带的DOTNET类型同名的
php 不像VB.NET一样允许函数重载,所以同一个class模块之中不可以出现相同名字的函数
$debugger : \dotnetDebugger
HandleRequest(object $app, string|\controller $wwwroot = NULL, \controller $injection = NULL)
Handle web http request
使用这个函数来进行web请求的处理操作
object | $app | The web app logical layer |
string|\controller | $wwwroot | The html views document root directory. |
\controller | $injection | The access control injection. |
** File not found : 函数的第一个参数必须是一个class对象,第二个参数为html模板的文件路径或者控制器对象 **