php -f file.php cat文件到命令行?

时间:2014-06-18 11:48:00

标签: php command-line command-line-interface

我刚刚编写了一个只包含以下内容的简单php文件:

echo 'some text';

我现在想从命令行执行它。当我php -v时,我得到:

HP 5.5.12-1~dotdeb.1 (cli) (built: May  6 2014 03:56:10)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies
    with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies
    with Xdebug v2.2.5, Copyright (c) 2002-2014, by Derick Rethans

但是当我php -f file.php时,它只是猫文件:

# php -f file.php
echo 'some text';
#

我也试过php file.php,但无济于事。

有人知道我在这里做错了什么吗?欢迎所有提示!

1 个答案:

答案 0 :(得分:3)

Juste添加开放&amp;将标签<?php ... ?>关闭到file.php中它会起作用。