# 入口文件
WeCenter默认的入口文件` index.php`
参考后入口文件这样编写:
~~~php
include('system/system.php');
AWS_APP::run();
~~~
就这么简单!
思考和探究后发现,WeCenter还有入口文件,那就是` install/index.php`。它给了我们新的启示:
~~~php
include('system/init.php');
~~~
在你的php文件中编写上面的代码之后,就可以调用一些例如`TPL::output();`等系统内的方法了。