douzha8489 2014-05-23 18:30
浏览 45
已采纳

如何在Linux中使用C编程检查我的php和pear版本?

If possible, I don't want to use string detection method where you use string functions to detect the version in a given string output. If it isn't possible then please disregard what I just typed.

Is there a function to do it like uname() or do I have to write my own function? If so, please give me a headstart or you can make my life easier by teaching me how to do it. Thanks!

Btw, I'm using dreamhost shared server if that might help and yes, it has gcc, php5.3 and pear 1.9.4 installed.

  • 写回答

1条回答 默认 最新

  • doz59484 2014-05-23 22:20
    关注

    Sorry to disappoint, but that is what you will need to do. The popen function is your friend. Simply call "pear -V" in read mode with popen and store the information in a buffer that you can easily parse to isolate the version numbers for both pear and PHP. It can be done much cleaner, but the gist of it is:

    FILE *pfd;
    char buffer[1024];
    char *bp = buffer;
    char tmp[100];
    size_t len;
    size_t line = 0;
    
    if ((pfd = popen ("pear -V", "r")) == NULL) {
        fprintf (stderr, "error: failed to open pipe.");
        return 1;
    }
    
    while (fgets (tmp, 1023, pfd) != NULL && line < 2)
    {
        len = strlen (tmp);
        strncpy (bp, tmp, len);
        bp += len;
        line++;
    }
    
    pclose (pfd);
    
    printf ("
    buffer:
    
    %s
    
    ", buffer);
    

    Output:

    buffer:
    
    PEAR Version: 1.9.4
    PHP Version: 5.3.8
    

    The parsing of the version numbers is left for you.

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部