1

首先,这是流程,以便您了解问题。我有四个文件,其中三个是类,我使用两个命名空间。
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]
    }
}

谢谢你的帮助。

4

2 回答 2

1

这是语法错误。您不能在属性定义中使用表达式。

这个声明可能包括一个初始化,但是这个初始化必须是一个常量值——也就是说,它必须能够在编译时被评估,并且不能依赖于运行时信息才能被评估。

http://php.net/manual/en/language.oop5.properties.php

于 2013-11-01T02:19:12.283 回答
0

你必须使用\net\[domain]\Zcrypt::它才能工作。或者更好的是分配一个别名,例如use \net\[domain] as z, then z\Zcrypt::。换句话说,请参阅 PHP 手册http://php.net/manual/en/language.namespaces.php。找到file4。它有你需要的例子。

于 2013-11-01T01:47:23.760 回答