我正在为尝试使用 phpactiverecord 的 droid 应用程序编写 Web 服务。我没有使用 mvc。我无法判断它是否正确连接到我的数据库,因为我不知道它失败时返回什么,或者它是否不能在没有 mvc 的情况下使用。
<?php
require_once '../libs/php-activerecord/ActiveRecord.php';
ActiveRecord\Config::initialize(function($cfg)
{
$cfg->set_model_directory('../libs/php-activerecord/models');
$cfg->set_connections(array(
'development' => 'mysql://username:password@localhost/dbname'));
});
//$json=$_GET ['json'];
$json = file_get_contents('php://input');
$obj = json_decode($json);
//echo $json;
$data = Users::all();
$user_name = $data->user_name;
echo($data);
$password = $data->password;
$posts = array(name =>$user_name,
password =>$password
);
header('Content-type: application/json');
echo json_encode(array('posts'=>$posts));
?>
当我尝试转到不是很有帮助的页面时,它会引发 500 错误。