首先,这是流程,以便您了解问题。我有四个文件,其中三个是类,我使用两个命名空间。
login.php 是一个表单,当表单被提交时,它会回到自己并执行下面的代码。login.php 调用 Zcrypt::Decrypt 和 Zcrypt::Encrypt 没有问题。登录::DoLogin(); 在 login.php 文件中也被调用。
在 Login.class.php(DoLogin 所在的位置)文件中,我创建了一个新的 DB 实例,并且可以毫无错误地调用 Zcrypt::Decrypt。在 Login.class.php 我调用 dbConnect();
在 DB.class.php(dbConnect 所在的位置)文件中,我无法调用 Zcrypt::Decrypt。它给了我一个语法错误或者它找不到 Zcrypt。我尝试过 Zcrypt::Decrypt([string])、\Zcrypt::Decrypt([string]),甚至 \Zcrypt::Decrypt([string])。
问题是,为什么我可以在某些课程中调用 Zcrypt 而在其他课程中却不能?我错过了一些代码来工作吗?
这是我的文件
登录.php:
require 'NS/helpdesk/Login.class.php';
require 'NS/helpdesk/Cryptv2.class.php';
require 'NS/helpdesk/DB.class.php';
use \net\[domain]\Zcrypt;
use \net\[domain]\helpdesk\Login;
#check to see if the form was submited and that the values are equal.
{
if (strlen($_POST['hvalue']) > 1 && $_SERVER['REMOTE_ADDR'] == Zcrypt::Decrypt($_POST['hvalue']) )
{
Login::DoLogin(); ###### This is where I call my static Login Class
}
else {
echo "bad form";
}
}
登录.class.php
namespace net\[domain]\helpdesk;
use \net\[domain]\helpdesk\DB;
use \net\[domain]\Zcrypt;
class Login
{
public function DoLogin()
{
#call to the database class to open the db
$DB = new DB();
$DB->dbConnect();
#This is to show I can call Zcrypt in this class (note, no \) and it works.
echo $dbPass = Zcrypt::Decrypt("[coded string]");
}
}
数据库类.php
namespace net\[domain]\helpdesk;
use \net\[domain]\Zcrypt;
class DB
{
public $dbHost = '[address]';
public $dbUser = '[un]';
public $dbPass = '[pw]';
######The two commented out lines below will not run. I get a syntax error
# public $dbPass = \Zcrypt::Decrypt("[strint]");
# public $dbPass = Zcrypt::Decrypt("[string]")
public $dbName = '[name]';
public $db;
public function __construct(){}
public function dbConnect()
{
[code]
}
}
Cryptv2.class.php
namespace net\[domain];
use Exception;
class Zcrypt
{
public static function Encrypt($i)
{
[code]
}
public static function Decrypt($i)
{
[code]
}
}
谢谢你的帮助。