douzha8489 2014-05-24 02: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-24 06: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.

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

报告相同问题?

悬赏问题

  • ¥15 PointNet++的onnx模型只能使用一次
  • ¥20 西南科技大学数字信号处理
  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。