Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下变体从 Windows 中的命令行运行 php 脚本:
php script.php php -f script.php
这两个命令都只是打印出整个脚本,但不执行脚本。
听起来你忘了用<?php.
<?php
块外的 PHP 脚本中的内容<?php直接发送到 STDOUT。
没有脚本的内容,很难看到问题。
很可能是您没有使用<?php ?>标签或使用简写。尝试使用完整的<?php ?>标签。
<?php ?>