Gearman:首次使用时遇到麻烦

时间:2018-06-02 14:59:15

标签: gearman

我试着从Gearman开始。下载并设置后,gearman_version()有效。但是,当我启动服务器并试图像这样初始化工作者时:

php myFileName.php &

我看到了代码:

enter image description here

当我启动客户端时,我也看到了代码。我做错了什么?

2 个答案:

答案 0 :(得分:0)

我不知道为什么,但来自youtube的例子在我的情况下并不正确。我从http://php.net/manual/ru/gearman.examples-reverse-bg.php

获得的第一个脚本

答案 1 :(得分:0)

您可能在安装中禁用了短打开标记。注意,运行实际上不包含任何PHP的php文件只会回显文件的内容。

>$ echo 'hello' > text.php
>$ php text.php 
hello
>$

您可以通过以下方法验证安装设置

>$ php -i | grep "short_open_tag"
short_open_tag => On => On

如果标签是On,那么您已经准备就绪。