Tagged Questions
The print-r tag has no wiki summary.
12
votes
5answers
10k views
What is Perl's equivalent to PHP's print_r()?
I find print_r in PHP extremely useful, but wonder if there is anything remotely equivalent in Perl?
10
votes
3answers
5k views
What's the difference between echo, print, and print_r in PHP?
I use echo and print_r much, and almost never use print.
I feel echo is a macro, and print_r is an alias of var_dump.
But that's not the standard way to explain the differences.
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
120 views
Making sense of print_r output
There are cases when the output for print_r is very complicated, long and hard to read, e.g. objects, nesting arrays, nesting objects, nesting arrays,...
Is there library or tools to help developers ...
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
4answers
6k views
Why do I get “Resource id #4” when I apply print_r() to an array in PHP?
Below is the code:
$result=mysql_query("select * from choices where a_id='$taskid'")or die(mysql_error());
print_r($result);
I get "Resource id #4", any idea?
After I added
...
3
votes
3answers
6k views
print_r to get object methods in PHP?
I'm working with Views 2 in Drupal 6, and I am having difficulty finding documentation on the methods of the View object. Is there any PHP function like print_r that outputs methods as well as fields?
...
2
votes
3answers
86 views
Sort array keys ascending
If I assign values to array like this:
$foo[0] = 2;
$foo[1] = 3;
print_r($foo);
I get:
Array
(
[0] => 2
[1] => 3
)
But if I do:
$foo[1] = 3;
$foo[0] = 2 ;
print_r($foo);
I get:
...
2
votes
5answers
152 views
Excluding objects when print_r()ing variables in a custom logger
I have Logger-Class which is logging everything. Objects will be logged with print_r to a human-readable state. My Problem is that I have a big MVC-Object. Everytime an Exception or Error occurs, ...
2
votes
1answer
212 views
SimpleXML - echo / print_r return different values
I am trying to convert some xml into a json object using PHP.
This should be working, yet for some bizarre reason it is failing.
Could someone provide some input.
// Loop Through images and return ...
2
votes
3answers
1k views
PHP, print_r($_SESSION) doesn't show its content?
I want to see the content of the the array $_SESSION with the command print_r($_SESSION) but what I get is just the following output:
Array ()
what am I missing ?
thanks
2
votes
4answers
320 views
Print and array to a file
I would like to print an array to a file.
I would like the file to look exactly similar like how a code like this looks.
print_r ($abc); assuming $abc is an array.
Is there any one lines solution ...
2
votes
3answers
2k views
php print_r nice table
I'm looking to be able to produce a nicely formatted table with rows and columns from the contents of a print_r array statement?
Any ideas?
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
4answers
100 views
How do I see values in an array?
I am trying to create an a list of files within a directory, including those in subdirectories, showing their full path, filename and extension. Any guidance would be appreciated.
After plenty of ...
1
vote
5answers
128 views
Create array printed with print_r
I have an array:
$a = array('foo' => 'fooMe');
and I do:
print_r($a);
which prints:
Array ( [foo] => printme )
Is there a function, so when doing:
needed_function(' Array ( [foo] ...
1
vote
7answers
246 views
Simple Question.. Function to Function get variable array
look below code:
$myvar = array();
first();
function first()
{
global $myvar;
$array(apple, banana, orange);
}
second();
function second()
{
global $myvar;
print_r($array);
}
...
1
vote
2answers
163 views
Simple PHP code not working
I am new to PHP and following some online training. I entered the following code and it doesn't seem to be working. I checked the syntax with the instructors video several times, but can't find any ...
1
vote
2answers
125 views
putting print_r results in variable
In PHP I can say:
print_r($var);
What I can't do (at least I don't know how) is:
$var_info = print_r($var);
How can I accomplish the effect of putting the results of a print_r inside a variable?
...
1
vote
2answers
58 views
parsing values in a php array
I am new to PHP, please help me with the stuff. Below is the code written followed by its results. How can i access [count] inside [property] in most effective way.
code
echo '<pre>';
...
1
vote
1answer
181 views
PHP: Problems finding the most frequent character in a UTF-8 string (eg 唐犬土用家犬尨犬山桑)?
From an MySQL database I can extract the following utf-8 characters:
"唐犬土用家犬尨犬山桑山犬巴戦師子幻日幻月引綱忠犬愛犬戌年成犬教条教義"
I am trying to find the most frequent character in this string. I tried putting each as ...
1
vote
3answers
328 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
4answers
3k views
Flash trace,dump,print Array variables
is there a way to trace an ARRAY in FLASH.
I want to have an output similar to PHPs command:print_r(myArray)
for ex: (in flash):
var event:Array = new Array();
event['name']='david';
trace(event); ...
1
vote
3answers
428 views
PHP print_r and static member
I've got an instance of a DB object that's passed to a Session object, because the Session object has several methods that make use of DB object to execute SQL statements I had plan to store this DB ...
0
votes
2answers
39 views
Conditional logic optimization: How to check against multiple unique cases in 1 line?
Here is a bit of code that displays: 'varname: varvalue' in a browser. It is used by calling the vc('varname'); or vc(array('multiple','varnames'));
I first tried writing:
if ...
0
votes
1answer
43 views
Convert XML data to a PHP Array
Hello there to everyone of you reading this action request.
I have this file: http://www.basket.ba/ksbih/xml/200_07.xml, witch is an XML file as everyone of you can see by yourselfs.
I've used all ...
0
votes
3answers
65 views
PHP parsing from print_r()
I'm working with some API integration and I have a limitation with understanding Objects.
Not my code, but here's what I have:
<?php
print_r(pingSample());
?>
The result on the browser is ...
0
votes
1answer
177 views
print_r equivalent for jstl
So i have a list/map, or at least i assume it is and i'm fed up with spending hours going through trying to work out which sections below to each other.
...
0
votes
1answer
89 views
Can't print_r domDocument
I only see:
DOMNodeList Object ( )
is this a php bug or something?
How am I supposed to see the HTML elements from the object?
0
votes
1answer
180 views
Print array returns “Array”
When I try to print this :
$erros[] = array($divErro1,$divErro2);
foreach($erros as $testeste){
$testeste = array($erros);
using print_r i get the correct values, but with that ...
0
votes
4answers
171 views
Display array values in PHP
So, Im working with PHP for the first time and I am trying to retrieve and display the values of an array. After a lot of googling, the only methods I can find for this are ...
0
votes
3answers
61 views
Anyone know a program or a script to turn PHP object/arrays into a nice expandable/collapsable tree?
I'm working with an open-source CMS that uses some very big multi dimensional arrays/objects. I'm using print_r() to print out these arrays/objects but they are so huge and have so many nested levels ...
0
votes
2answers
987 views
Return array from foreach() loop and print_r() it
I am doing some study on arrays, and I am trying to resolve how to store the values of a foreach loop into an array which I can then print_r().
My script works fine with the exception of the $array = ...
0
votes
2answers
123 views
Improving my print_r Algorithm
Well guys, it's a simple question (more than a question i'ts a challenge).
When i develop large applications its really hard to track how the arrays are working (in arrays of more than 3 dimensions, ...
0
votes
1answer
497 views
PHP_Incomplete_Class Object / Different responses from print_r
When I issue a print_r ($_SESSION) on my local server I receive the following
Array
(
[group] => Rich Primosch
[ok] => 1
[golfer] => Fritz Davis
[uniq] => 38
[fname] ...
0
votes
1answer
68 views
print_r not understanding a portion of the output
I run a print_r command on $_POST and I am getting the following response:
s:1289:"Array
(
[id_master] => 12
[id_controller] => 4
[JSON] => ...
0
votes
2answers
222 views
how do you write a function like print_r() that recursively prints objects?
i want to write a function that prints multi-dimensional objects which are text (or integers, etc.) into <span></span> tags and arrays into unordered lists.
how do you make the function ...
0
votes
4answers
153 views
print_r functionality in iPython
Is there a way to get PHP-like 'print_r(object)' funcionality in iPython?
I know I can use '?' to get info about an object, but how do I view the values of the object?
0
votes
2answers
2k views
PHP eval error when assigning value to variable
I have a bit of PHP code (for the module feature of my CMS (not drupal) which allows people to view pages, comments, forum posts, blog posts, etc...):
if(isset($_GET["m"]))
{
//Does the module ...
-1
votes
4answers
42 views
Printing the contents of a php array
I am trying to print or echo out the contents of the GET and POST arrays. I am doing this for debugging reasons as I need to check exactly what is being passed to my submit form.
I am currently using ...
-1
votes
3answers
56 views
Print out everything inside array in php
can anyone explain why I can't see what's inside the array? I think it supposed to be able to have multiple numbers (subscriptions) so maybe that's why I'm having trouble? Here's the code.
$num = ...
-1
votes
1answer
85 views
Question mark in print_r array key
I have a small form for setting event reminders. Couple check boxes and some date times. Nothing fancy. One field in particular is getting passed into php with something funky:
<input ...
-2
votes
1answer
206 views
Why did I only got [] from print_r($row); in PHP?
Below is the code:
$result=mysql_query("select * from choices where a_id='$taskid'")or die(mysql_error());
while($row=mysql_fetch_assoc($result))
{ print_r($row); }
Why did I only got []? What's ...