我一直在尝试在我的 Ubuntu 13.10 机器上运行我的 PHP 脚本,但它不寻常地返回 PHP 文件内容。
php -q discover/server.php
<?
// configuration settings
require "config.php";
function pollCallback()
{
$poller = new Poller_Discover ();
$poller->check ();
}
$daemon = new Core_Daemon ( 'pollCallback', true );
我觉得这很不寻常,因为我已经打开了 PHP 的enable_short_tag
配置。