为了账号安全,请及时绑定邮箱和手机立即绑定

微信小程序tp5开发(2) 环境的搭建

假设您已安装了composer ,使用composer安装tp5用下面的命令
composer create-project topthink/think project --prefer-dist
图片描述

目录给结为:
D:.
├─application
│ └─index
│ └─controller
├─extend
├─public
│ └─static
├─runtime
├─thinkphp
│ ├─lang
│ ├─library
│ │ ├─think
│ │ │ ├─cache
│ │ │ │ └─driver
│ │ │ ├─config
│ │ │ │ └─driver
│ │ │ ├─console
│ │ │ │ ├─bin
│ │ │ │ ├─command
│ │ │ │ │ ├─make
│ │ │ │ │ │ └─stubs
│ │ │ │ │ └─optimize
│ │ │ │ ├─input
│ │ │ │ └─output
│ │ │ │ ├─descriptor
│ │ │ │ ├─driver
│ │ │ │ ├─formatter
│ │ │ │ └─question
│ │ │ ├─controller
│ │ │ ├─db
│ │ │ │ ├─builder
│ │ │ │ ├─connector
│ │ │ │ └─exception
│ │ │ ├─debug
│ │ │ ├─exception
│ │ │ ├─log
│ │ │ │ └─driver
│ │ │ ├─model
│ │ │ │ └─relation
│ │ │ ├─paginator
│ │ │ │ └─driver
│ │ │ ├─process
│ │ │ │ ├─exception
│ │ │ │ └─pipes
│ │ │ ├─response
│ │ │ ├─session
│ │ │ │ └─driver
│ │ │ ├─template
│ │ │ │ ├─driver
│ │ │ │ └─taglib
│ │ │ └─view
│ │ │ └─driver
│ │ └─traits
│ │ ├─controller
│ │ ├─model
│ │ └─think
│ └─tpl
└─vendor
├─composer
└─topthink
└─think-installer
└─src
application是我们应用程序的保存目录,命名规则要按约定进行。
vendor是第三方的模块。
public则是我们运行目录 。
入口文件是目录的public 下的 index.php

<?php
//
+----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
//
+----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
//
+----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
//
+----------------------------------------------------------------------
// | Author: liu21st liu21st@gmail.com
//
+----------------------------------------------------------------------

// [ 应用入口文件 ]

// 定义应用目录
define('APP_PATH', DIR . '/../application/');
// 加载框架引导文件
require DIR . '/../thinkphp/start.php';

我们用tp5内置的SERVER进行开发。

PS D:\thinkphp5\shop> cd .\public\
PS D:\thinkphp5\shop\public> php -S localhost:8090 router.php
PHP 5.6.14 Development Server started at Wed Aug 30 16:28:44 2017
Listening on http://localhost:8090
Document root is D:\thinkphp5\shop\public
Press Ctrl-C to quit.
运行起来了
图片描述

点击查看更多内容
2人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消