English 中文(简体)
• 如何使Xdebug特征
原标题:How to enable Xdebug feature
  • 时间:2022-04-13 06:29:37
  •  标签:
  • php
  • xdebug

• 如何使Xdebug的所有特征得以实现? Xdebug有6个特点,只有1个特征在我的Xdebug中活跃。 我先读了Xdebug文件,但仍未拿到。 谢谢。

“myactive

问题回答

documentation:

您可以同时通过将识别标志与xdebug.mode相分离,使多种方式成为可能:xdebug.mode=develop,trace

<>><>Hi>,

您可在项目组合档案中适当设置<代码>xdebug.mode,从而使Xdebug特征得以实现。


Solution

If you want to enable all Xdebug features you should listed all features identifiers separating them with comma as xdebug.mode value. Simply add the following line

xdebug.mode=develop,coverage,debug,gcstats,profile,trace

in your current php.ini file.


Knowledge

你们可以通过指挥或分散所有特征,使一种或多种方式成为可能。 哪些特征是识别特征,以及你可在查询的所有其他信息 http://xdebug.org/docs/all_gings#mode” rel=“nofollow noreferer”> ,载于模式部分


在我面临同样的问题之后,我无法找到一个完整的答案,因此,在解决这个问题之后,我写了这一答案。 我希望这也将有助于其他人。

<><><>光线>

我认为,他们需要不太熟悉该文件的人来帮助保存这些文件。 他们没有详细说明。 其中一人含糊不清地说是为了增加 de的价值。 但应该举一个确切的例子。 其他备选办法没有提到确定什么确切价值。 如果帮助能够提供,它显然应该有一节来说明。 这是我找到答案的唯一地点。 增 编





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...