Tagged Questions
The var-dump tag has no wiki summary.
18
votes
3answers
18k views
What is the JavaScript equivalent of var_dump or print_r in PHP?
I would like to see the structure of object in JavaScript (for debugging). Is there anything similar to var_dump in PHP?
Thanks
16
votes
7answers
3k views
A more pretty/informative Var_dump alternative in PHP?
Every decent programmer has a print_r or var_dump wrapper they use, love and assign shortcut keys to, why don't we share our favourite ones.
EDIT:
A full year of time and labor after asking this, ...
6
votes
1answer
186 views
Question about var_dump output
When I var_dump an object, the output looks like this:
object(XCTemplate)#2477 (4) {
["id"]=>
string(1) "1"
["attributes"]=>
array(0) {
}
["db_table_name"]=>
string(14) ...
5
votes
4answers
738 views
Looking for easy way to analyze var_dump (PHP) on large objects
I know (PHP's) var_dump is supposed to be "human readable" and all, but analyzing large objects is just a pain in the neck. I am struggling to make sense of a few of the large objects that are being ...
4
votes
1answer
187 views
Unexpected observation: var_dump() of an array is flagging referenced elements… since when?
I've just been running some simple debug tests against arrays, and noticed that when I do a var_dump() of an array, the output is flagging any element in the array that is referenced by another ...
4
votes
9answers
3k views
Which php variable debugging function do you use? var_dump, print_r, var_export, other?
I personally use var_dump, but lots of people like print_r.
What does everyone use? Pros and Cons?
Does someone have a special home brew function of their own?
3
votes
3answers
121 views
Human Readable JSON: aka Add spaces and breaks to json dump
Is there a "simple" script somewhere that will take a json data and format it to make it more readable?
For example:
// $response is a json encoded string.
var_dump($response);
The above outputs ...
3
votes
2answers
60 views
Printing PHP Array into a string with correct syntax
If I have this array:
<?php
$myarray = Array
(
'keyword' => 'seo',
'title_factor' => false,
...
3
votes
6answers
58 views
Is there an easy way to take the output of print_r or var_dump and convert it to an array?
I want to take the output of a var_dump or print_r and convert it to an array that mirrors what was in the original.
convert this:
stdClass Object
(
[title] => Edison's Friends
[status] ...
3
votes
1answer
717 views
Does xdebug beautify var_dump?
According to this article, http://devzone.zend.com/article/2803, var_dump is supposed to beautify the outputs.
I have installed xdebug on my local host with PHP Version 5.3.3-1ubuntu9.2.
I have this ...
3
votes
3answers
941 views
How to get instance ID with PHP
I'm looking for a way to get the instance ID of a given object / resource with PHP, the same way var_dump() does:
var_dump(curl_init()); // resource #1 of type curl
var_dump(curl_init()); // resource ...
2
votes
5answers
162 views
Why does var_dump(array) result in a 500 error in Magento?
I'm trying to see what is inside all the objects of the Magento system, but when I try to var_dump the $_links variable (containing all information needed for rendering the links in the header of ...
2
votes
5answers
340 views
PHP's real SESSION object
EDIT: (UPDATED)
Maybe my question was not clear enough. Ok, lets put it this way:
$arr["a"] = 10;
var_dump($arr);
$arr["b"] =& $arr["a"];
var_dump($arr);
the first var_dump returns:
array
...
1
vote
1answer
26 views
PHP preformatted output by default
Is there a php.ini setting (or some other setting) that will cause print_r and var_dump output to be automatically formatted as though I had explicitly placed a <pre> tag before such an output ...
1
vote
3answers
47 views
What functions should I know for testing php code?
I have been using php for a while but haven't taken the time to learn methods that will help test code, debug and investigate problems.
A recently learnt print_r() which has really helped me in ...
1
vote
3answers
47 views
String is not empty but not appearing when using var_dump
Currently I am trying to return a publicly available XML resource, though when I use var_dump($resource) it returns string(4390) " ".
I am using CURL to retrieve the resource, and it successfully ...
1
vote
2answers
190 views
Zend PHPUnit var_dump not working in controllers
I just ran into an unusual problem:
While testing controllers in Zend using PHPUnit, all of a sudden all occurrences of var_dump() placed in Controllers stopped working. In models and test-classes, ...
1
vote
1answer
53 views
php/postgres - print issue on the browser
I am developing a user/login system, wherein I have a small php function below that updates the user values in a DB when certain condition is met (i.e. when username and password matches). However, ...
1
vote
3answers
129 views
var_dump displays text, but echo does not
I have an array called $worker
the array consists of only strings, each of which has multiple lines.
if I do
var_dump($worker);
it displays all the information, but do
...
1
vote
2answers
93 views
Debug php with Netbeans - Newbie source request
I'm using var_dump. Everywhere. It's a mess. And slow. I would like to lock a variable, right-click, choose test, and it will show me the output results on each period or my script, on a IDE window. - ...
1
vote
1answer
383 views
xdebug var_dump function colors
I have installed xdebug on my computer with windows and it works fine by default - traces are colorfull and pretty but on another computer with ubuntu 10.10 its colourless and without any formatting.
...
1
vote
2answers
73 views
php unprintable strings
My text strings behaves very strange when printing them. They all come from parsing a website with help of DOMDocuments. I have used DOMNode::nodeValue to get the parsed texts.
Most of my string is ...
1
vote
4answers
118 views
I simply want to view the contents of shopping cart in Magento
I have an observer that is ran when you view the contents of the shopping cart in Magento. I simply want to var_dump the list of product ID's.
I know it probably seems like a dumb question but I ...
1
vote
3answers
329 views
Hide specific class fields from print_r or var_dump
Is it possible to hide a specific class fields from print_r ?
<?php
class DataManager {
public $data = array();
}
class Data {
public $manager;
public $data = array();
public ...
1
vote
2answers
269 views
jQuery, PHP, AJAX, “tu” variable beeing posted for no reason, shows in var_dump()
A jQuery AJAX request .post()s data to page.php, which creates $res and var_dump()s it.
$res:
$res = array();
foreach ($_REQUEST as $key => $value) {
if($key){
$res[$key] = ...
0
votes
1answer
17 views
How to obtain the value of an array exposed in var_dump from a SimpleXMLElement return?
I sorry for the aparently easy question for all you experienced developers. But I can´t obtain the answer in any place. So I´ll try here. Maybe help other guy someday.
$xml = new ...
0
votes
1answer
15 views
Using Cake w/ url extensions
I am using CakePHP 2.0 (I believe it is v2.0.3.) and PHP 5.3.8.
I am working on an application which utilizes Cake's support for url extensions. Specifically, I am outputing XML whenever a url ...
0
votes
1answer
43 views
Why interpreter show undefined as NULL?
Last time I'm exploring PHP pretty much and I was curious if it's possible to define variable without initializing it like in C++.
Well interpreter doesn't output an fatal eror (only a notice that ...
0
votes
4answers
58 views
a var_dump equivalent for sending data with email
I've been looking for a php library that allows me to send formatted data (like krumo) for variables via email.
This is because I've created an error handler that sends an email with the data on ...
0
votes
2answers
28 views
Why does the gettype() say it's a double but var_dump() says float?
Why does the gettype() say it's a double but var_dump() says float?
$number = 1234567890123456789;
echo "Number: {$number} is a ". gettype($number) . "\n";
var_dump($number);
Response:
Number: ...
0
votes
2answers
55 views
var_dump is good colored with XAMPP or new EasyPhP, but doensnt list everything, how to configure it?
var_dump is good colored with XAMPP or new EasyPhP, but doensnt list everything, how to configure it? For example there is an array in array, and its listed as:
array
...
I want to see it too! ...
0
votes
1answer
193 views
Code Igniter returns empty result set but num_rows(5) - solved
Situation/Problem
I'm pulling all records form a table. I'm passing the returned data to my view. Num_rows says 5 but the result set is empty although there are records in the table.
controller
...
0
votes
3answers
93 views
how to create an array from var_dump() result
I var_dump and array and got a value printed, how do i create an array from the result. the array is generated a method and i clearly dont know the structure of the array.
Array ( [0] => ...
0
votes
1answer
82 views
var_dump changes the result of the function?
I'm on a script which is going to make automatic appointment and the snippet below is for finding an available time. However, I've come across something that i've never heard of before.
When i use ...
0
votes
4answers
196 views
php var_dump equivelant or print_r
since I am using json, and ajax it's annoting I cn't pass the value on a valid json.
is there away to just return the value of var dump without it echo,being output to the browser.
e.g.
$data = ...
0
votes
4answers
313 views
PHP: Colors in var_dump (Ubuntu)
I'd like to see the colors and formatting that can come with var_dump. In my php.ini html_errors is set to On. This is confirmed by phpinfo().
My PHP version is 5.3.3 on Ubuntu 10.10. Anybody an ...
0
votes
1answer
58 views
Getting a value from an object php
I used var_dump on an object in my code. print var_dump( $$user);
result: object(stdClass)#35 (1) { ["user1_ready"]=> string(1) "0" } How do I get to this value (0 in this case).
I tried print ...
0
votes
1answer
51 views
Error found in xHTML output due to PHP's variables, $_SERVER and <ADDRESS>
I'm having this problem with validating a document that contains some basic PHP variables. Mainly I'm using html's h1, h2, and pre codes for formatting the text.
My problem is that when I validate ...
0
votes
1answer
119 views
unreadable output with var_dump on xampp windows
I'm having some issue with var_dump.i'm using xampp 1.7.3 on windows.
I think in previous version i could output a variable with var_dump without print "<pre>" print "</pre>" firebug is ...
0
votes
3answers
476 views
unreadable var_dump() output on Snow Leopard?
I have xdebug configured as shown below but the error-output is totally unreadable.
Do you have an idea what's wrong with the setup?
TIA & best regards
Setup: Apache/2.2.13 (Unix) PHP/5.3.0 on ...
0
votes
1answer
391 views
Result of var_dump($_POST['pass_field']) is a bunch of dashes?
Greetings,
I am trying to debug a login script. So I decided to use var_ dump to print out the password. But for some reason say If I type in 'BOSTON' rather then printing 'BOSTON' it prints out six ...
-1
votes
2answers
62 views
Trimming array values
I know var_dump($array) trims the array content & print it. but I want to skip the print part. What should I do? Should I use some other function
-1
votes
3answers
175 views
var_dump outputting string('**') “array”
I am using a foreach loop and a var_dump but the var_dump from the following code outputs something strange. How do I get rid of the pre-prended sring() and quotation marks?
$dir = 'url/dir/dir/'; ...
-3
votes
5answers
489 views
How to create an array from output of var_dump in PHP?
How can I parse the output of var_dump in PHP to create an array?