一开始我有3个PHP文件来处理3个不同的AJAX查询。
我决定创建一个独特的PHP类,我将获得$ _POST参数,然后调用3个函数中的1个。
我还有另一个用于数据库查询的PHP类(base.php)。我在我的类中包含了这个文件,用于获取AJAX查询(ajax.php)和我的index.php文件。
开始我写了这样的东西(ajax.php):
<?php
new Ajax();
class Ajax
{
private $base;
public function __construct()
{
include("base.php");
$this->base = new Base();
$script = $_POST["script"];
$reference = $_POST["reference"];
if($script == "correct" || $script == "insert") {
$ptGauche = json_decode($_POST["repGauche"]);
$ptDroite = json_decode($_POST["repDroite"]);
}
if($script == "insert") {
$txtGauche = json_decode($_POST["motGauche"]);
$txtDroite = json_decode($_POST["motDroite"]);
}
switch($script)
{
case "correct":
$this->correct($reference, $ptGauche, $ptDroite);
break;
case "insert":
$this->insert($reference, $ptGauche, $ptDroite, $txtGauche, $txtDroite);
break;
case "delete":
$this->delete($reference);
break;
}
}
private function correct($reference, $ptGauche, $ptDroite)
{
// code
$query_result = $this->base->selectAllQuery($reference);
}
private function insert($reference, $ptGauche, $ptDroite, $txtGauche, $txtDroite)
{
//code
$this->base->insertQuery($reference, $txtGauche, $txtDroite, $new_ptGauche, $new_ptDroite);
}
private function delete($reference)
{
//code
$this->base->deleteQuery($reference);
}
}
?>
显然,执行new Ajax();
而不是将类实例保存在$ajax = new Ajax();
Class instance without variable之类的变量中并不是一个好主意。
有人说在类构造函数__construct
中放置具有副作用的代码并不标准,也许我应该使用静态方法而不是使用构造函数创建对象并执行Ajax::functionToLoad();
之类的操作。
这对我的脚本不起作用,因为我使用的是非静态类,所以我的属性private $base;
应该是非静态的,因此不可能进行数据库查询静态函数无法访问非静态属性“:/ http://www.programmerinterview.com/index.php/c-cplusplus/can-static-function-access-non-static-members-of-class/
所以,我使用的是非静态方法,而不是使用构造函数,我正在这样做:
$ajax = new Ajax();
$ajax->loader();
class Ajax
{
private $base;
public function loader()
{
// code
}
// correct(), insert() and delete() functions
}
可以这样做,还是应该以其他方式进行?
答案 0 :(得分:0)
public function Ajax()....是__construct不存在时的默认构造函数。所以使用Ajax而不是loader或者创建一个函数Ajax来执行$ this-&gt; loader();
答案 1 :(得分:0)
您正在寻找的是一个单身人士
<?php
class Ajax
{
private static $inst = new Ajax();
private $base;
public static function getInstance(){
return $inst;
}
public function __construct()
{
include("base.php");
$this->base = new Base();
$script = $_POST["script"];
$reference = $_POST["reference"];
if($script == "correct" || $script == "insert") {
$ptGauche = json_decode($_POST["repGauche"]);
$ptDroite = json_decode($_POST["repDroite"]);
}
if($script == "insert") {
$txtGauche = json_decode($_POST["motGauche"]);
$txtDroite = json_decode($_POST["motDroite"]);
}
switch($script)
{
case "correct":
$this->correct($reference, $ptGauche, $ptDroite);
break;
case "insert":
$this->insert($reference, $ptGauche, $ptDroite, $txtGauche, $txtDroite);
break;
case "delete":
$this->delete($reference);
break;
}
}
private function correct($reference, $ptGauche, $ptDroite)
{
// code
$query_result = $this->base->selectAllQuery($reference);
}
private function insert($reference, $ptGauche, $ptDroite, $txtGauche, $txtDroite)
{
//code
$this->base->insertQuery($reference, $txtGauche, $txtDroite, $new_ptGauche, $new_ptDroite);
}
private function delete($reference)
{
//code
$this->base->deleteQuery($reference);
}
}
?>
您现在应该可以按如下方式访问该实例
<?php
$defaultInst = Ajax::getInstance();
?>