1 / 11

PHP 网站开发 — 框架结构

PHP 动态网站开发. 讲师 : 曾凡涛. PHP 网站开发 — 框架结构. 广东轻工职业技术学院 计算机工程系. PHP 动态网站开发. 广东轻工职业技术学院 曾凡涛. PHP 动态网站开发. 广东轻工职业技术学院 曾凡涛. PHP 动态网站开发. 广东轻工职业技术学院 曾凡涛. PHP 动态网站开发. 广东轻工职业技术学院 曾凡涛. PHP 动态网站开发. 广东轻工职业技术学院 曾凡涛. PHP 动态网站开发. <?php

iolani
Download Presentation

PHP 网站开发 — 框架结构

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PHP动态网站开发 讲师:曾凡涛 PHP网站开发—框架结构 广东轻工职业技术学院 计算机工程系

  2. PHP动态网站开发 广东轻工职业技术学院 曾凡涛

  3. PHP动态网站开发 广东轻工职业技术学院 曾凡涛

  4. PHP动态网站开发 广东轻工职业技术学院 曾凡涛

  5. PHP动态网站开发 广东轻工职业技术学院 曾凡涛

  6. PHP动态网站开发 广东轻工职业技术学院 曾凡涛

  7. PHP动态网站开发 <?php define('THINK_PHP','./ThinkPHP'); //定义ThinkPHP路径 define('APP_NAME','HtApp');//定义应用程序名字 define('APP_PATH','./HtApp');//定义应用程序路径 require'./ThinkPHP/ThinkPHP.php'; //将ThinkPHP核心框架文件包含进来 App::run();//运行应用程序框架 ?> 广东轻工职业技术学院 曾凡涛

  8. PHP动态网站开发 <?php returnarray( 'DB_TYPE'=>'mysql', 'DB_HOST'=>'localhost', 'DB_NAME'=>'mydatabase', 'DB_USER'=>'gdqy', 'DB_PWD'=>'123456', 'DB_PORT'=>'3306', 'DB_PREFIX'=>'news_', 'APP_DEBUG'=>true, ); ?> 广东轻工职业技术学院 曾凡涛

  9. PHP动态网站开发 <?php class IndexAction extends Action{ publicfunction _initialize(){ header("Content-Type:text/html; charset=utf-8"); } publicfunction index(){ $this->display(); } } ?> 广东轻工职业技术学院 曾凡涛

  10. PHP动态网站开发 广东轻工职业技术学院 曾凡涛

  11. PHP动态网站开发 广东轻工职业技术学院 曾凡涛

More Related