标签:style io 数据 for art ar 问题 cti
原创文章,转载请注明出处!
近期小学习了一下Mac下的Apache,Mysql,php。这里记录一下,以备忘
在MAMP下測试成功,直接echo返回所数据
Failed to configure for local php debugging
require_once(PRO_ROOT.‘/message/pb_message.php‘);
require_one(PRO_ROOT.‘/message_proto/pb_protohbcommand.php‘);
$l_requestContent = file_getcontents("php://input");
$l_requestCommand = new RequestCommand();
$l_requestCommand->parseFromString($l_requestContent);
echo($l_request->loginRequest()->user_data()->user_id());
alias mysql=‘/Applications/MAMP/Library/bin/mysql‘
if(mysql_num_rows(mysql_query("show databases like ‘"."test_database"."‘"))==1){
drop database test_database;
}
create database test_database;
标签:style io 数据 for art ar 问题 cti
原文地址:http://www.cnblogs.com/mfrbuaa/p/3903132.html