我创建了一个CI模型,它根据传入的参数动态加载某些类。这些类只是围绕phpseclib的包装类,以便与不同的设备建立ssh连接。 我注意到的是,当我尝试执行一种特定方法时,我收到了上述错误消息。
这里有一些示例代码可以帮助您了解我正在做的事情。这就是我的模型:
public function get_portstatusall($ip, $switchname)
{
$classname = $this->switchToClassName($switchname);
try{
include_once(APPPATH.'libraries/'.$classname.'.php');
$switch_obj = new $classname($ip, 'password', '');
$switch_obj->connect();
$data = $switch_obj->dosomething();
$switch_obj->disconnect();
return $data;
}
catch (Exception $e) {
echo 'this really should be logged...';
return false;
}
}
public function get_portstatusindividual($ip, $switchname)
{
$classname = $this->switchToClassName($switchname);
try{
include_once(APPPATH.'libraries/'.$classname.'.php');
$switch_obj = new $classname($ip, 'password', '');
$switch_obj->connect();
$data = $switch_obj->dosomethingelse();
$switch_obj->disconnect();
return $data;
}
catch (Exception $e) {
echo 'this really should be logged...';
return false;
}
}
正如您所看到的,我根据传入的switchname动态确定要加载哪个类。此代码成功加载了一个名为" device123.php"的类,让'说。依次类device123,实例化phpseclib附带的SSH2对象,并使用它向设备发送ssh命令。
这是设备123的代码片段:
class device123
{
// sample code to demo how to use phpseclib to create an interactive ssh session.
//this library relies on phpseclib. you must include this class and SSH2.php from Net/phpseclib.
private $_hostname;
private $_password;
private $_username;
private $_connection;
private $_data;
private $_timeout;
private $_prompt;
public function __construct($hostname, $password, $username = "", $timeout = 10)
//public function __construct($params)
{
echo 'in the switch constructor<br>';
set_include_path(get_include_path() . PATH_SEPARATOR . '/var/www/phpseclib');
include('Net/SSH2.php');
$this->_hostname = $hostname;
$this->_password = $password;
$this->_username = $username;
} // __construct
public function connect()
{
$ssh = new Net_SSH2($this->_hostname);
if (!$ssh->login($this->_username, $this->_password)) { //if you can't log on...
die("Error: Authentication Failed for $this->_hostname\n");
}
else {
$output= $ssh->write("\n"); //press any key to continue prompt;
$prompt=$ssh->read('/([0-9A-Z\-])*(#)(\s*)/i', NET_SSH2_READ_REGEX);
if (!$prompt) {
die("Error: Problem connecting for $this->_hostname\n");
}
else {
$this->_connection = $ssh;
}
}
} // connect
public function close()
{
$this->_send('exit');
} // close
public function disconnect()
{
$this->_connection->disconnect();
$ssh=NULL;
}
我不认为我完全理解如何重新声明SSH2课程...但我想知道我是否可以在自己之后正确地摧毁/清理。 为了帮助排除故障,我尝试在SSH2类的构造函数和析构函数中添加调试echo语句,以及名为device123的包装器类。 一切看起来都很合适......
我不认为我走在正确的轨道上......你能告诉我你认为我应该从哪里开始寻找吗? 是因为它可能会一个接一个地调用这两个方法......并且两者都可以加载同一个类吗?
感谢。
答案 0 :(得分:0)
当您尝试多次加载类时,Php会出现此错误,例如其他源文件中存在同名类。
答案 1 :(得分:0)
所有php类必须具有唯一的名称。您应该include
在一个地方的所有文件,如果您想要延迟加载,请跟踪所有加载的类,或者只使用http://cz.php.net/include_once。 require
函数也是如此。
_once
后缀完全符合您的需要:如果文件已经加载,它会阻止加载文件,从而阻止类重新声明。