如何在不使用ZMQ库(全部为纯php)的情况下使用php在服务器后端实现推/拉?

时间:2019-05-22 21:12:36

标签: php reactjs zeromq ratchet

我正在尝试设置WAMP服务器,现在我需要一种仅使用php进行推/拉的方法,我可以找到的唯一现有方法是ZMQ php库,但它需要php的扩展,并且并非所有服务器都允许安装扩展。

我尝试使用HTTP服务器,但是客户端需要循环,而我不希望客户端循环,只需简单的推送即可。

我需要类似以下代码的内容,但所有内容均在php中实现。

Sub set_Transparency()
Dim x As Integer
For x = 100 To 149
With Sheet5.Shapes("TextBox " & x)
    With .TextFrame2.TextRange.Characters
        With .Font.Fill
.ForeColor.RGB = RGB(255, 255, 255)
.Transparency = 0
    End With
        End With
End With
    Next x
End Sub

0 个答案:

没有答案