まともなPHPプログラマーは、使用するprint_r
またはvar_dump
ラッパーを持ち、ショートカットキーを使用して割り当て、なぜ共有しないのかお気に入りのもの。
私が好むのは、Xdebug拡張機能によって提供されるvar_dump
関数 です :拡張機能をインストールするだけです(WindowsとLinuxの両方で簡単) =、およびvar_dump
はより良い出力を取得します:
そして簡単なスクリーンショット:
そしてもちろん、Xdebugは、リモートデバッグなどの他の便利な機能を提供します(たとえば、Eclipse PDTのPHPアプリケーションのグラフィカルデバッグ)、プロファイリング、 ...
これは私がインラインで使用している非常に便利なものです。
$pretty = function($v='',$c=" ",$in=-1,$k=null)use(&$pretty){$r='';if(in_array(gettype($v),array('object','array'))){$r.=($in!=-1?str_repeat($c,$in):'').(is_null($k)?'':"$k: ").'<br>';foreach($v as $sk=>$vl){$r.=$pretty($vl,$c,$in+1,$sk).'<br>';}}else{$r.=($in!=-1?str_repeat($c,$in):'').(is_null($k)?'':"$k: ").(is_null($v)?'<NULL>':"<strong>$v</strong>");}return$r;};
echo $pretty($some_variable);
探しているのは Krumo (警告、Chromeアラートマルウェアの場合)。
簡単に言えば、Krumoはprint_r()およびvar_dump()の代替品です。定義により、Krumoはデバッグツールであり(当初はPHP4/PHP5、現在はPHP5のみ)、PHP変数に関する構造化された情報を表示します。
これに対する私の(部分的な)解決策は、次のような関数を追加することです(Google Chromeを使用):
<?
function console_dump($value)
{
?>
<script>
console.log(<? echo json_encode($value); ?>);
</script>
<?
}
?>
Ctrl + Shift + J(コンソールを開く)を押すと、JSON構造が見つかります。もちろん、JSON応答をきれいに印刷するにはさらに便利です。
Coldfusionの素晴らしいcfdump
タグをエミュレートするdBugを使用しています。
私が使用するものの完全な例...
<pre>
<?php
//*********** Set up some sample data
$obj = new stdClass;
$obj->a=123;
$obj->pl=44;
$obj->l=array(31,32);
$options = array(
'Orchestra'=>array(1=>'Strings', 8=>'Brass', 9=>$obj, 3=>'Woodwind', 16=>'Percussion'),
2=>'Car',
4=>'Bus',
'TV'=>array(21=>'Only Fools', 215=>'Brass Eye', 23=>'Vic Bob',44=>null, 89=>false));
//*********** Define the function
function dump($data, $indent=0) {
$retval = '';
$prefix=\str_repeat(' | ', $indent);
if (\is_numeric($data)) $retval.= "Number: $data";
elseif (\is_string($data)) $retval.= "String: '$data'";
elseif (\is_null($data)) $retval.= "NULL";
elseif ($data===true) $retval.= "TRUE";
elseif ($data===false) $retval.= "FALSE";
elseif (is_array($data)) {
$retval.= "Array (".count($data).')';
$indent++;
foreach($data AS $key => $value) {
$retval.= "\n$prefix [$key] = ";
$retval.= dump($value, $indent);
}
}
elseif (is_object($data)) {
$retval.= "Object (".get_class($data).")";
$indent++;
foreach($data AS $key => $value) {
$retval.= "\n$prefix $key -> ";
$retval.= dump($value, $indent);
}
}
return $retval;
}
//*********** Dump the data
echo dump($options);
?>
</pre>
出力...
Array (4)
[Orchestra] = Array (5)
| [1] = String: 'Strings'
| [8] = String: 'Brass'
| [9] = Object (stdClass)
| | a -> Number: 123
| | pl -> Number: 44
| | l -> Array (2)
| | | [0] = Number: 31
| | | [1] = Number: 32
| [3] = String: 'Woodwind'
| [16] = String: 'Percussion'
[2] = String: 'Car'
[4] = String: 'Bus'
[TV] = Array (5)
| [21] = String: 'Only Fools'
| [215] = String: 'Brass Eye'
| [23] = String: 'Vic Bob'
| [44] = NULL
| [89] = FALSE
これが私のものです:
class sbwDebug
{
public static function varToHtml($var = '', $key = '')
{
$type = gettype($var);
$result = '';
if (in_array($type, ['object', 'array'])) {
$result .= '
<table class="debug-table">
<tr>
<td class="debug-key-cell"><b>' . $key . '</b><br/>Type: ' . $type . '<br/>Length: ' . count($var) . '</td>
<td class="debug-value-cell">';
foreach ($var as $akey => $val) {
$result .= sbwDebug::varToHtml($val, $akey);
}
$result .= '</td></tr></table>';
} else {
$result .= '<div class="debug-item"><span class="debug-label">' . $key . ' (' . $type . '): </span><span class="debug-value">' . $var . '</span></div>';
}
return $result;
}
}
スタイル付き:
table.debug-table {
padding: 0;
margin: 0;
font-family: arial,tahoma,helvetica,sans-serif;
font-size: 11px;
}
td.debug-key-cell {
vertical-align: top;
padding: 3px;
border: 1px solid #AAAAAA;
}
td.debug-value-cell {
vertical-align: top;
padding: 3px;
border: 1px solid #AAAAAA;
}
div.debug-item {
border-bottom: 1px dotted #AAAAAA;
}
span.debug-label {
font-weight: bold;
}
ライブラリ、事前タグ、各アプリへのインストールなしでvarダンプを美しくするために、最近無料のchrome拡張機能(開発中)を開発しました。すべてJavaScriptとregExで行われます。あなたがしなければならないのは、拡張機能をインストールするだけです。私もFirefoxバージョンに取り組んでいます。これがGitHubページです。 chromeおよびfirefoxウェブストアですぐに利用できるようにしたいと思います。
https://github.com/alexnaspo/var_dumpling
出力例を次に示します。
Tracyは、 dump()を使用して美しい折りたたみ可能な出力を持っています関数 。
これらの豪華なライブラリは素晴らしいです...オーバーヘッドを除いて。無限のパラメーターを取る単純できれいなvar_dumpが必要な場合は、私の関数を試してください。いくつかの単純なHTMLを追加します。データ属性も追加されます。HTML5を使用する場合、下位バージョンはそれらを無視しますが、ブラウザーコンソールで要素を開き、画面に表示されるものが十分でない場合はもう少し情報を取得しやすくします。
レイアウトは非常にシンプルで、オーバーヘッドはありません。オブジェクトダンプ(XMLを含む)のgettype
やclass
などの名前を含む各パラメーターの大量の情報を提供します。それは試されており、本当です、私はそれを何年も使用しています。
function preDump() { // use string "noEcho" to just get a string return only
$args = func_get_args();
$doEcho = TRUE; $sb;
if ($args) {
$sb = '<div style="margin: 1em 0;"><fieldset style="display:inline-block;padding:0em 3em 1em 1em;"><legend><b>preDump: '.count($args).' Parameters Found.</b></legend>';
foreach (func_get_args() as $arg) {
if (gettype($arg) == 'string') if ($arg == 'noEcho') { $doEcho = FALSE; $sb = preg_replace('/(preDump: )[0-9]+/', 'preDump: '.(count($args)-1), $sb); continue; }
$sb .= '<pre data-type="'.gettype($arg).'"';
switch (gettype($arg)) {
case "boolean":
case "integer":
$sb .= ' data-dump="json_encode"><p style="border-bottom:1px solid;margin:0;padding:0 0 0 1em;"><b>gettype('.gettype($arg).')</b></p><p>';
$sb .= json_encode($arg);
break;
case "string":
$sb .= ' data-dump="echo"><p style="border-bottom:1px solid;margin:0;padding:0 0 0 1em;"><b>gettype('.gettype($arg).')</b></p><p>';
$sb .= $arg;
break;
default:
$sb .= ' data-dump="var_dump"';
if (is_object($arg)) $sb .= 'data-class="'.get_class($arg).'"';
$sb .= '><p style="border-bottom:1px solid;margin:0;padding:0 0 0 1em;"><b>gettype('.gettype($arg).')';
if (is_object($arg)) $sb .= ' ['.get_class($arg).']';
$sb .= '</b></p><p>';
ob_start();
var_dump($arg);
$sb .= ob_get_clean();
if (ob_get_length()) ob_end_clean();
}
$sb .= '</p></pre>';
}
$sb .= '</fieldset></div>';
}
else {
$sb = '<div style="margin: 1em 0;"><fieldset style="display:inline-block;"><legend><b>preDump: [ERROR]</b></legend><h3>No Parameters Found</h3></fieldset></div>';
}
if ($doEcho) echo($sb);
return $sb;
}
また、Codeigniterを使用する場合は、CIも非常に簡単に追加してください。まず、application/config/autoload.php
に移動し、helper
'string'
がオンになっていることを確認します。
$autoload['helper'] = array( 'string' );
次に、MY_string_helper.php
という名前のファイルをapplication/helpers
に作成し、単純に存在チェック用の一般的なif
ステートメントに関数を挿入します。
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
if (!function_exists('preDump')) {
function preDump() {
...
}
}
// DON'T CLOSE PHP
| OR |、別の方向に進みたい場合。
次のスニペットは上記と同じですが、ブラウザコンソールに変数が表示されます。これにより、SQLオブジェクト呼び出しや、キー名などが欠落している他の配列およびオブジェクト呼び出しのデバッグが容易になる場合があります。
function consoleDump() { // use string "noEcho" to just get a string return only
$args = func_get_args();
$doEcho = TRUE; $sb;
if ($args) {
$sb = '<script type="text/javascript">console.log("<" + new Array('.(count($args) < 10 ? '49': '48').').join("-") + "[consoleDump: '.count($args).' items]" + new Array(50).join("-") + ">"); console.log([';
foreach (func_get_args() as $i => $arg) {
if (gettype($arg) == 'string') if ($arg == 'noEcho') { $doEcho = FALSE; $sb = preg_replace('/(consoleDump: )[0-9]+/', 'consoleDump: '.(count($args)-1), $sb); continue; }
$sb .= '{ "type": "'.gettype($arg).'", ';
switch (gettype($arg)) {
case "boolean":
case "integer":
case "string":
$sb .= '"value": '.json_encode($arg);
break;
default:
$sb .= '"value": '.json_encode($arg);
if (is_object($arg) || is_array($arg)) $sb .= ', "count": '.json_encode(count((array)$arg));
if (is_object($arg)) $sb .= ', "objectClass": "'.get_class($arg).'"';
}
$sb .= '}';
if ($i < count($args)-1) $sb .= ', ';
}
$sb .= ']); console.log("<" + new Array(120).join("-") + ">"); </script>';
}
else {
$sb = '<script type="text/javascript">console.log("<" + new Array(120).join("-") + ">");console.log("consoleDump: [ERROR] No Parameters Found");console.log("<" + new Array(120).join("-") + ">");</script>';
}
if ($doEcho) echo($sb);
return $sb;
}
すべてで動作します!
consoleDump($simpXMLvar, $_SESSION, TRUE, NULL, array( 'one' => 'bob', 'two' => 'bill' ), (object)array( 'one' => 'bob', 'two' => 'bill' ));
<------------------------------------------------[consoleDump: 6 items]------------------------------------------------->
[Object, Object, Object, Object, Object, Object]
// This drops down to show your variables in JS objects, like:
0: Object
count: 4
objectClass: "SimpleXMLElement"
type: "object"
value: Object
__proto__: Object
// ...etc...
<----------------------------------------------------------------------------------------------------------------------->
リストをより完全にするために-Symfony開発者は、使用可能なスタンドアロンダンパーの代替をリリースしました:
https://github.com/symfony/var-dumper
あなたはそれについてもっと読むことができます:
http://www.sitepoint.com/var_dump-introducing-symfony-vardumper/
私が好むのは、debugfrom https://github.com/hazardland/debug.php です。これは、debug(プロジェクトまたはライブラリにその関数をコピーするだけです)。典型的なdebug()html出力は次のようになります。
ただし、次のように(4つのスペースでインデントされたタブがある)同じ機能を備えたプレーンテキストとしてデータを出力することもできます(必要に応じてファイルにログを記録することもできます)。
string : "Test string"
boolean : true
integer : 17
float : 9.99
array (array)
bob : "alice"
1 : 5
2 : 1.4
object (test2)
another (test3)
string1 : "3d level"
string2 : "123"
complicated (test4)
enough : "Level 4"
Krumoに似た小さなクラスを作成しましたが、アプリに埋め込むのがはるかに簡単です。
ここにリンクがあります: https://github.com/langpavel/PhpSkelet/blob/master/Classes/Debug.php
そして、ここにサンプル出力: http://langpavel.php5.cz/debug_sample.html
さらに別の自家製バージョン:
http://github.com/perchten/neat_html
かなり柔軟だと思うのが好きです。特定の出力環境を目的としていませんが、出力/印刷または動作を変更する理由、および永続的な設定を指定できる多数のオプション引数があります。
PHP Array Beautifierこのシンプルなツールは、print_r()ステートメントなどのPHPの配列またはオブジェクト出力を取得し、カラーコーディングでフォーマットしてデータを簡単に読み取ります。 http://phillihp.com/toolz/php-array-beautifier/
Var_dumpsを美しくするために、chrome拡張機能と jqueryプラグイン を開発しました
この問題を解決するために作成したchrome拡張機能を次に示します。
https://chrome.google.com/webstore/detail/varmasterpiece/chfhddogiigmfpkcmgfpolalagdcamkl
PHPで非常に大きな配列を処理している場合、この関数が役立つ場合があります。
function recursive_print ($varname, $varval) {
if (! is_array($varval)):
print $varname . ' = ' . var_export($varval, true) . ";<br>\n";
else:
print $varname . " = array();<br>\n";
foreach ($varval as $key => $val):
recursive_print ($varname . "[" . var_export($key, true) . "]", $val);
endforeach;
endif;
}
基本的に、各要素が個別の行にある配列全体をダンプします。これは、特定の要素の正しいフルパスを見つけるのに役立ちます。
出力例:
$a = array();
$a[0] = 1;
$a[1] = 2;
$a[2] = array();
$a[2][0] = 'a';
$a[2][1] = 'b';
$a[2][2] = 'c';
私のものはもっと簡単です。私にとっては、インフラストラクチャのインストールxdebugなどを変更するための知識や時間はあまりありません。
また、他の場合では、たとえば、単純なWP Webサイトに多くは必要ありません
だから私は使用します:
highlight_string("\n<?" . var_export($var, true) . "?>\n");
それは本当に私を大いに助けます。
しかし、私はDevConsole環境を好むので、私はこの素晴らしいがシンプルな機能を使用します:
https://codeinphp.github.io/post/outputting-php-to-browser-console/
リトルツィーク:
<?php
/**
* Logs messages/variables/data to browser console from within php
*
* @param $name: message to be shown for optional data/vars
* @param $data: variable (scalar/mixed) arrays/objects, etc to be logged
* @param $jsEval: whether to apply JS eval() to arrays/objects
*
* @return none
* @author Sarfraz
*/
function logConsole($name, $data = NULL, $jsEval = FALSE)
{
if (! $name) return false;
$isevaled = false;
$type = ($data || gettype($data)) ? 'Type: ' . gettype($data) : '';
if ($jsEval && (is_array($data) || is_object($data)))
{
$data = 'eval(' . preg_replace('#[\s\r\n\t\0\x0B]+#', '', json_encode($data)) . ')';
$isevaled = true;
}
else
{
$data = json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
}
# sanitalize
$data = $data ? $data : '';
$search_array = array("#'#", '#""#', "#''#", "#\n#", "#\r\n#");
$replace_array = array('"', '', '', '\\n', '\\n');
$data = preg_replace($search_array, $replace_array, $data);
$data = ltrim(rtrim($data, '"'), '"');
$data = $isevaled ? $data : ($data[0] === "'") ? $data : "'" . $data . "'";
$js = <<<JSCODE
\n<script>
// fallback - to deal with IE (or browsers that don't have console)
if (! window.console) console = {};
console.log = console.log || function(name, data){};
// end of fallback
console.log('===== PHP Dump =====');
console.log('$name');
console.log('$type');
console.log($data);
console.log('===== / PHP Dump =====');
console.log('\\n');
</script>
JSCODE;
echo $js;
} # end logConsole