To be a better coder
发布时间:2020-02-11 21:31:25
blog.csdn.net/weixin_43025071/article/details/82491560https://www.cnblogs.com/edan/p/10407202.htmlhttps://blog.csdn.net/qingdujun/article/details/71055759https://blog.csdn.net/qq_37198420/article/details/97276452https://blog.csdn.net/qq_37198420/article/details/97759765https://b.........【阅读全文】
发布时间:2020-02-19 13:41:12
unbuntu-14.04系统libvirt-1.2.112015-10-19 02:19:17.197+0000: 17757: error : virJSONValueToString:1549 : internal error: No JSON parser implementation is available解决方法:安装yajl-devel,并重新编译运行libvirt安装yajl-devel wget http://github.com/lloyd/yajl/tarball/2.0.1.........【阅读全文】
发布时间:2020-02-29 21:28:44
指针数组: char *ifname[5] = {0}; char *port_num[10] = {0}; for(i=0; i<atoi(serialnum)*2; i++){ ifname[i] = (char*)malloc(32); memset(ifname[i], 0x00, 32); &n.........【阅读全文】
发布时间:2020-02-29 10:26:03
<?php $command = '/var/www/html/fzip.out /var/www/html/test /var/www/html/test.fzip'; //$command = 'ls /var/www/html'; system($command,$return);exec($command,$out); //echo $command; print_r($return);echo '<br>=================<br>';print_r($out);?> 问题:shell返回值126,(没有权限全部加777,找不.........【阅读全文】