1. 什么是WAMP Server
WAMP是Windows,Apache,MySQL和PHP,Perl,Python的简称。WAMP是一个一键安装的软件,它为开发PHP,MySQL Web应用程序提供一个环境。安装这款软件你相当于安装了Apache,MySQL和PHP。或者,你也可以使用XAMP。
2. 安装和使用WAMP Server
你可以从http://www。wampserver。com/en/下载WAMP,安装完成之后,可以从开始->所有程序->WampServer->StartWampServer运行该程序。
在浏览器中输入http://localhost/来测试你的服务器是否安装成功。同样的,也可以打开http://localhost/phpmyadmin来检验phpmyadmin是否安装成功。
3. 创建和运行PHP项目
现在,你已经有一个能开发PHP和MYSQL项目的环境了。打开安装WAMP Server的文件夹(在我的电脑中,是C:\wamp\),打开www文件夹,为你的项目创建一个新的文件夹。你必须把项目中所有的文件放到这个文件夹中。
新建一个名为android_connect的文件夹,并新建一个php文件,命名为test.php,尝试输入一些简单的php代码(如下所示)。输入下面的代码后,打开http://localhost/android_connect/test.php,你会在浏览器中看到“Welcome,I am connecting Android to PHP,MySQL”(如果没有正确输入,请检查WAMP配置是否正确)
test.php
<?php
echo"Welcome, I am connecting Android to PHP, MySQL"
?>4. 创建MySQL数据库和表
在本教程中,我创建了一个简单的只有一张表的数据库。我会用这个表来执行一些示例操作。现在,请在浏览器中输入http://localhost/phpmyadmin/,并打开phpmyadmin。你可以用PhpMyAdmin工具创建数据库和表。
创建数据库和表:数据库名:androidhive,表:product
CREATE DATABASE androidhive
CREATE TABLE products(
pid int(11) primary key auto_increment,
name varchar(100) not null,
price decimal(10,2) not null,
description text,
created_at timestamp defaultnow(),
updated_at timestamp
)5. 用PHP连接MySQL数据库
现在,真正的服务器端编程开始了。新建一个PHP类来连接MYSQL数据库。这个类的主要功能是打开数据库连接和在不需要时关闭数据库连接。
新建两个文件db_config.php,db_connect.php
db_config.php--------存储数据库连接变量
db_connect.php-------连接数据库的类文件
db_config.php
<?php
/*
* All database connection variables
*/
define('DB_USER', "root")// db user
define('DB_PASSWORD', "")// db password (mention your db password here)
define('DB_DATABASE', "androidhive")// database name
define('DB_SERVER', "localhost")// db serverdb_connect.php
<?php
/**
* A class file to connect to database
*/
classDB_CONNECT {
// constructor
function__construct() {
// connecting to database
$this->connect()
}
// destructor
function__destruct() {
// closing db connection
$this->close()
}
/**
* Function to connect with database
*/
functionconnect() {
// import database connection variables
require_once__DIR__ . '/db_config.php'
// Connecting to mysql database
$con= mysql_connect(DB_SERVER, DB_USER, DB_PASSWORD) ordie(mysql_error())
// Selecing database
$db= mysql_select_db(DB_DATABASE) ordie(mysql_error()) ordie(mysql_error())
// returing connection cursor
return$con
}
/**
* Function to close db connection
*/
functionclose() {
// closing db connection
mysql_close()
}
}
?>怎么调用:当你想连接MySQl数据库或者执行某些操作时,可以这样使用db_connect.php
$db= newDB_CONNECT()// creating class object(will open database connection)
直接给出PHP代码实现。对于这个文件,大家需要修改的便是命名空间。
namespace API\Controlleruse Think\Controller
至于为什么,大家需要了解下PHP的基础知识,和thinkPHP框架的开发流程就可以了,很快的。
print_r($_FILES)print_r($_POST)
echo file_get_contents('php://input')
$arr = $GLOBALS["HTTP_RAW_POST_DATA"]
print_r($arr)
是不会看到什么结果的
因为你似乎并没用显示返回数据的代码,也不知道返回的数据格式是否符合要求(不合要求也可能不显示)
但你这样
file_put_contents('test.txt', print_r($_FILES, 1))
file_put_contents('test.txt', print_r($_POST, 1), FILE_APPEND)
file_put_contents('test.txt', file_get_contents('php://input'), FILE_APPEND)
$arr = $GLOBALS["HTTP_RAW_POST_DATA"]
file_put_contents('test.txt', print_r($arr, 1), FILE_APPEND)
在 test.txt 中是一定有结果的
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)