Home  >  Article  >  php教程  >  重大发现Discuz DB层跨库映射关系表名前缀BUG,discuz关系表

重大发现Discuz DB层跨库映射关系表名前缀BUG,discuz关系表

WBOY
WBOYOriginal
2016-06-13 09:27:081004browse

重大发现Discuz DB层跨库映射关系表名前缀BUG,discuz关系表

场景:

在Discuz中创建Table模型,但该Table所在库与Discuz不在同一个库。

 

Discuz好像是在3之后提供跨库映射的机制。

映射没问题,主要是发现表名前缀没有相应的映射过来。当然,其实也不算bug。因为他只考虑discuz自己的系统,一般来说,表名前缀是相同的。

 

在db驱动类里,db_driver_mysql(i):

function table_name中追加代码

 

 

<span>if</span>(!<span>empty</span>(<span>$this</span>->config[<span>$id</span>]['tablepre'<span>])){
                </span><span>$this</span>->tablepre = <span>$this</span>->config[<span>$id</span>]['tablepre'<span>];
            }</span>

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn