随笔 - 170
文章 - 1
评论 - 5
阅读 -
27万
08 2019 档案
php ftp 使用 以及 php_connect_nonb() failed: Operation now in progress (115)
摘要:设置 ftp_pasv($conn,true); 会出现下面错误 不设置 调用ftp 连接没问题 ftp_nlist ftp_put ftp_get 等函数都不成功 ftp_nb_fput(): php_connect_nonb() failed: Operation now in progress
阅读全文
十六进制字符串转数字
摘要:关键代码: sscanf( "0x4988E348AED3C" , "%I64x" , &nValude );关键是 64位的支持 void strTest() { char* p = "0x4988E348AED3C"; char* str; __int64 i = strtol(p, &str, 16); printf("%...
阅读全文