PHP是否有像Jquery一样的可视化文档?

PHP是否有像Jquery一样的可视化文档?,php,ajax,web-services,Php,Ajax,Web Services,首先,我想指出,这是我关于Stackoverflow的第一篇文章。然而,在我的web开发生涯中,我已经多次使用该网站。现在我觉得我需要的不仅仅是通过谷歌浏览 所以我的问题是PHP是否也有类似的可视化文档 因为如果不是的话,我已经在考虑为自己写。那么有人知道它是否真的在网络上的某个地方吗 我相信编写自己的visualphp会让我对PHP有更好的了解,但如果知道轮子已经被别人发明了,我就不会那么急切了 所以如果有人知道,请告诉我。。多谢各位 据我所知,没有 官方文件位于。 有一个搜索选项和,但它没有

首先,我想指出,这是我关于Stackoverflow的第一篇文章。然而,在我的web开发生涯中,我已经多次使用该网站。现在我觉得我需要的不仅仅是通过谷歌浏览

所以我的问题是PHP是否也有类似的可视化文档

因为如果不是的话,我已经在考虑为自己写。那么有人知道它是否真的在网络上的某个地方吗

我相信编写自己的visualphp会让我对PHP有更好的了解,但如果知道轮子已经被别人发明了,我就不会那么急切了

所以如果有人知道,请告诉我。。多谢各位

据我所知,没有

官方文件位于。 有一个搜索选项和,但它没有像visualjquery.com那样的深入搜索


对于

来说,没有类似的可视化文档(据我所知),但有一个非常好的参考,通常使用:

因为它是如此完整,所以不需要很多其他参考资料


顺便说一下,在php.net上搜索特定函数非常容易。只需浏览到
http://php.net/[在此处插入函数名]
,它会将您重定向到所需的页面。

看起来您只是想要一个与普通文档不同的界面

在线PHP手册和其他一些手册都是使用一个可以扩展(通过附加的包和格式)以提供您想要的任何类型的输出的工具构建的:包括一个像这样的奇特的可视化Jquery


或者,您可以采用现有的输出格式(例如,PhD可以呈现XML/JSON/PHP),并在顶部添加一个简单的可视化UI。例如,函数的JSON输出是

{
    "name": "file",
    "purpose": "Reads entire file into an array",
    "manualid": "function.file",
    "version": "PHP 4, PHP 5",
    "params": [
        {
            "name": "filename",
            "type": "string",
            "optional": "false"
        },
        {
            "name": "flags",
            "type": "int",
            "optional": "true"
        },
        {
            "name": "context",
            "type": "resource",
            "optional": "true"
        }
    ],
    "return": {
        "type": "array",
        "description": "Returns the file in an array. Each element of the array corresponds to a\n   line in the file, with the newline still attached. Upon failure,\n   file returns FALSE.Each line in the resulting array will include the line ending, unless\n    FILE_IGNORE_NEW_LINES is used, so you still need to\n    use rtrim if you do not want the line ending\n    present.If PHP is not properly recognizing\nthe line endings when reading files either on or created by a Macintosh\ncomputer, enabling the\nauto_detect_line_endings\nrun-time configuration option may help resolve the problem."
    },
    "errors": null,
    "notes": [
        {
            "type": "warning",
            "description": "When using SSL, Microsoft IIS\nwill violate the protocol by closing the connection without sending a\nclose_notify indicator. PHP will report this as \"SSL: Fatal\nProtocol Error\" when you reach the end of the data. To work around this, the\nvalue of error_reporting should be\nlowered to a level that does not include warnings.\nPHP 4.3.7 and higher can detect buggy IIS server software when you open\nthe stream using the https:\/\/ wrapper and will suppress the\nwarning. When using fsockopen to create an\nssl:\/\/ socket, the developer is responsible for detecting\nand suppressing this warning."
        }
    ],
    "changelog": [
        {
            "version": "5.0.0",
            "change": "The context parameter was added"
        },
        {
            "version": "5.0.0",
            "change": "Prior to PHP 5.0.0 the flags parameter only\n        covered include_path and was\n        enabled with 1"
        },
        {
            "version": "4.3.0",
            "change": "file became binary safe"
        }
    ],
    "seealso": [
        {
            "type": "function",
            "name": "readfile"
        },
        {
            "type": "function",
            "name": "fopen"
        },
        {
            "type": "function",
            "name": "fsockopen"
        },
        {
            "type": "function",
            "name": "popen"
        },
        {
            "type": "function",
            "name": "file_get_contents"
        },
        {
            "type": "function",
            "name": "include"
        },
        {
            "type": "function",
            "name": "stream_context_create"
        }
    ]
}

PHP不是那么直观。。。但是,有这样的想法可能会更好!从未见过visualjquery.com,看起来非常有用。@Pekka说我过时了,但我完全可以使用PHP手动UI。我宁愿与它进行StackOverflow集成,也不愿进行深入搜索:)@Gordon heh,说得好!:)
php.net/functionname
语法使文档非常棒。不过,正常的搜索也很好。重新堆栈溢出集成:SO概念对手册页面非常有用。用户生成的注释(非常精彩)确实缺少的是向上/向下投票的机会,以及直接评论贡献的机会。@Pekka告诉@salathe;)谢谢,我一定要试试。