我发现一个组织在混合 PHP 和 HTML 方面存在一个主要问题,它看起来很糟糕,所以我想知道创建一组面向对象的方法是否是一个可行的选择,例如:
class MainOO {
public $Database;
public function __construct($Server,$User, $Password, $DB){
if ($this->Database = new mysqli($Server,$User,$Password,$DB)){
return true;
}
return false;
}
public function User_Login(){
$Get_Usr_Info = $this->Database->prepare("SELECT ID, Password, Salt FROM Users WHERE Username=?");
$Get_Usr_Info->bind_param('s',$_POST['username']);
$Get_Usr_Info->execute();
$Get_Usr_Info->store_result();
$User_Number = $Get_Usr_Info->num_rows;
$Get_Usr_Info->bind_result($UserID, $Stored_Password, $Stored_Salt);
$Get_Usr_Info->fetch();
$Get_Usr_Info->close();
if ($User_Number !== 1){
$Error = "Wrong Username Specified Or Password Is Incorrect";
header ("Location: index.php?Errors=".urlencode($Error));
exit;
}
// Continue with login script
}
public function Logout(){
if (session_status() !== PHP_SESSION_DISABLED){
session_destroy();
header ("Location: LoggedOut.php");
exit;
}
}
}
然后是 HTML 方面:
<?php
include "MainOO.php";
$MainOO = new MainOO("host","user","password","database");
?>
<div class="example">
<div class="example left">
<?php
$MainOO->User_Login();
?>
</div>
</div>
它仍然混合了 PHP 和 HTML,但它看起来比在 HTML 中间有一堆 PHP 更整洁。
我完全知道我可以迁移到已经设置好的 MVC 框架(这个主题看起来像),甚至使用诸如 smarty 之类的模板引擎,但我想尽可能避免这种情况。所以这是一个在 html 中拥有更简洁的 PHP 代码的可行选项?