cURL - 将输出放入整数变量中
我正在编写一个使用 cURL 的 C++ 程序,并且尝试从网站上的 php 文件读取到整数变量中。我发现了一个类似的帖子,但我无法调整它以使用整数多变的。
任何帮助将不胜感激。
I am writing a c++ program that uses cURL and I am trying to read from a php file on a site into an integer variable. I found a post that is similar but I am having trouble adapting that to use an integer variable.
Any help would be very appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
读入字符串,然后使用 atoi()。
Read into a string, then use atoi().