0

在命令行上运行phpdbgphp_sapi_name()时,从返回的值是“phpdbg”而不是“cli”,这会扰乱我的一些代码,这些代码会检查以确保代码在 CLI 上而不是在 Web 服务中运行。

我宁愿不更改我的代码以适应调试器。有没有办法让 phpdbg 将 SAPI 报告为“cli”而不是“phpdbg”?

4

1 回答 1

0

调用 phpdbg 时,您可以指定-S开关以指定要报告为 SAPI 的任何名称。例如phpdbg -Scli将其恢复为“cli”。

phpdbg 的官方在线文档位于https://phpdbg.room11.org/。但是,它似乎已经过时并且没有提及该-S选项。要查看当前选项列表,请运行phpdbg并使用该help options命令。

$ phpdbg
prompt> help options

Below are the command line options supported by phpdbg

Command Line Options and Flags
  Option  Example Argument    Description
  -c      -c/my/php.ini       Set php.ini file to load
  -d      -dmemory_limit=4G   Set a php.ini directive
  -n                          Disable default php.ini
  -q                          Suppress welcome banner
  -v                          Enable oplog output
  -b                          Disable colour
  -i      -imy.init           Set .phpdbginit file
  -I                          Ignore default .phpdbginit
  -O      -Omy.oplog          Sets oplog output file
  -r                          Run execution context
  -rr                         Run execution context and quit after execution (not respecting
breakpoints)
  -e                          Generate extended information for debugger/profiler
  -E                          Enable step through eval, careful!
  -s      -s=, -s=foo         Read code to execute from stdin with an optional delimiter
  -S      -Scli               Override SAPI name, careful!
  -l      -l4000              Setup remote console ports
  -a      -a192.168.0.3       Setup remote console bind address
  -x                          Enable xml output (instead of normal text output)
  -p      -p, -p=func, -p*    Output opcodes and quit
  -h                          Print the help overview
  -V                          Print version number
  --      -- arg1 arg2        Use to delimit phpdbg arguments and php $argv; append any $argv argument after it
于 2018-03-05T02:06:44.717 回答