Почему PDO debugDumpParams обрезает запрос

Я нашел тот же вопрос здесь, но он остался без ответа, и я предоставляю более простой пример здесь и попробую снова спросить …

Код:

<?php $dbh = new PDO('mysql:dbname=test;host=127.0.0.1', 'root'); $sth = $dbh->prepare(" SELECT ' Dumps the informations contained by a prepared statement directly on the output. It will provide the SQL query in use, the number of parameters used (Params), the list of parameters, with their name, type (paramtype) as an integer, their key name or position, and the position in the query (if this is supported by the PDO driver, otherwise, it will be -1). This is a debug function, which dump directly the data on the normal output. Tip: As with anything that outputs its result directly to the browser, the output-control functions can be used to capture the output of this function, and save it in a string (for example). This will only dumps the parameters in the statement at the moment of the dump. Extra parameters are not stored in the statement, and not displayed. ' "); $sth->execute(); $sth->debugDumpParams(); 

Результат:

 SQL: [835] SELECT ' Dumps the informations contained by a prepared statement directly on the output. It will provide the SQL query in use, the number of parameters used (Params), the list of parameters, with their name, type (paramtype) as an integer, their key name or position, and the position in the query (if this is supported by the PDO driver, otherwise, it will be -1). This is a debug function, which dump directly the data on the normal output. Tip: As with anythi Params: 0 

Почему это происходит, и как это исправить?
Заранее спасибо!

Related of "Почему PDO debugDumpParams обрезает запрос"

Я думаю, что debugDumpParams – это ошибка в целом. Тот факт, что он прячет данные прямо на стандартном выходе!

Поэтому я не буду использовать его в любом случае, и для целей ведения журнала включите общий журнал для mysql или создайте обертку вокруг PDO с функцией ведения журнала (это решение более переносимо).

Почему это происходит?

Я не нашел никакой информации об этом.

Как это исправить?

Я не нашел подсказки, как исправить это, используя собственный PDO.

Основная цель этого вопроса – увидеть все запросы для определенного скрипта php,
и я думаю, что лучший способ добиться этого – это to enable general log for mysql .