English 中文(简体)
我需要一个文字/应用程序,以保持与PHP前端连接的TCP联系。
原标题:I need a script/application to persist TCP connections for a PHP frontend

我正在利用TCP的习俗规程,为后台服务器打上PHP前线。 由于在建立与后台服务器的连接时手法相当复杂,我谨坚持与后台服务器连接的技术性CP。 自然,鉴于吉大港山区固有的无国籍性质(特别是在阿帕奇使用 mo-营地时),我无法直接在PHP中这样做。

我正在考虑建立当地“镜头服务器”,保持与后台服务器的连接。 用户必须保持自己与后台服务器的联系。 现在,这不是一个非常复杂的方案,但是由于网络方案规划有许多陷阱,我将使用一个能够像这样做的有力、成熟的应用程序。

我在谈到与代用服务器连接的PHP应用线上的一些东西,即“我有一个身份证;123”,从那时起,从该服务器到/从服务器的所有内容都直接由PHP前端和后台服务器管理。

就此提出合理解决办法的任何建议?

感谢!

最佳回答

这里有一种想法,尽管它可能不会特别大:

基本想法是,你想以某种方式把这些原始袖珍连接引向后继系统。

因此,你想起一个方案,与你的后端系统建立远程联系,然后在前端服务器的某些特别名录上设置一个域名(a fifo),并在用户会议之后列出域名。 这一进程只是两个环节之间的沟通。

我肯定我如何设计这种代理。 你也许会写上一种能够处理该问题的PHP中的mon(hint:你可能想看一下像Nanoserv或P_Deamon”等Sphp的有些框架——可能非常有效,但可能做的是罚款。 如果你去掉许多联系,你可能会想利用一些已经准备好的东西来避免每个联系的墨迹。

但基本想法是,对于支持系统的每一开放联系而言,有一些进程暴露了当地域名,即你的前端设计书可以与你们交谈。 这些前端的、有网络约束的进程都知道 ,因为它在本届会议之后被点名。

如何和何时建立/缩小这些联系,很可能取决于您的情况。 你们需要一些途径,才能要求获得一份清单(这说明代理 da所做的是编造/操作,打开当地域块,并开始代理),以及一些结束这些内容的战略。

问题回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签