绘制网络拓扑(php/jquery)
我为小型 ISP 工作。 我们需要在项目中绘制网络拓扑,以便进行网络管理。 我通常有这样的数据:
“思科” | => “D-链接” | => “D-链接”
等等......
所以。使用 PHP 和 jQuery 如何绘制简单但漂亮的拓扑图? 提前致谢!感谢您的支持。
I work for the small ISP.
We need to draw network topology in our project for network management.
I usually have this data:
"cisco"
| => "d-link"
| => "d-link"
and so on...
So. Using PHP and jQuery how can i draw simple but nice topology picture?
Thanks in advance! Appreciate your support.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 PHP 中,您可以调用 Graphviz 来制作图像。那里可能已经写好了 Graphviz 的 PHP 包装器,但是您自己调用它非常容易。
例如,此输入文件(在
example.dot
中):可以转换为图像:
结果如下:
In PHP, you could call out to Graphviz to make the images. There's probably a PHP wrapper for Graphviz already written out there, but it's pretty easy to call it yourself.
For example, this input file (in
example.dot
):Can be converted into an image:
Here's the result: