视觉范式,逆向工程PHP项目
尝试使用视觉范式进行逆向工程时出现以下错误:
原因:分析时发生错误:includes/config.php。遭遇 “定义”位于第 6 行第 66 列
这是行:
defined('DB_SERVER') ? null : define("DB_SERVER", "localhost");
有人知道出了什么问题吗?
I get the following error when trying to do reverse engineering with visual-paradigm:
Reason : Error occured when analysis: includes/config.php. Encountered
"define" at line 6, column 66
this is the line:
defined('DB_SERVER') ? null : define("DB_SERVER", "localhost");
Does someone know whats wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来很奇怪。通常,当我以这种方式执行简短的 if/else 时,我会将值呈现给变量。将其更改为使用正确的 if。
编辑
这可能是更好的方法?
从这里获取: http://www.php.net/manual/en /function.define.php#84439
Seems weird. Normally when I do short if/else in that fashion, I render the value to a variable. Change it up to use a proper if.
EDIT
This is probably a better way maybe?
Took from here: http://www.php.net/manual/en/function.defined.php#84439
使用定义('DB_SERVER')未定义('DB_SERVER'),我认为是这样
Use define('DB_SERVER') not defined('DB_SERVER'), i think so
包装你的三元条件:
Wrap your ternary condition: