PHP开发
程序员正茂
喜欢干点有难度的事
展开
-
某射击系统Win10下Wampserver3.1.7安装问题记录
1.php运行出现Call to undefined function curl_init() 解决:选择PHP5.6 2.数据库报错The user specified as a definer ('zouxin99'@'%') does not exist 解决:建一个zouxin99账号 3.Table 'yiyue.zjs_merchant_income' doesn't ...原创 2020-01-08 23:58:41 · 391 阅读 · 0 评论 -
PHP与C# Socket通信
PHP写的服务器端,C#写的客户端 <?php //确保在连接客户端时不会超时 set_time_limit(0); //设置IP和端口号 $address = "127.0.0.1"; $port = 2049; //调试的时候,可以多换端口来测试程序! /** * 创建一个SOCKET * AF_INET=是ipv4 如果用ipv6,则参数为 AF_INET6 * SOCK_STR原创 2016-08-04 13:35:42 · 1240 阅读 · 0 评论 -
PHP客户端与C#服务器端 Socket通信
C#代码using System;using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Sockets; using System.Net; namespace UpdServer { class Program { static void原创 2016-08-04 15:08:43 · 2638 阅读 · 1 评论
分享