Newbie PHP. Why is this an undefined index? [duplicate] - php

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
PHP: “Notice: Undefined variable” and “Notice: Undefined index”
I've skimmed through docs and this site but still unsure. I'm working with Drupal 7.
Printing the variable with this code:
<?php print $info['comments'] ?>
If there are zero comments I get
Notice: Undefined index as a message.
If it exists, it prints the correct #.
Any help would be appreciated. How do I set it so if there are no comments it displays a zero?
Thanks!

To print an integer no matter what:
<?php print #intval($info['comments']) ?>
Or to irrevocably suppress the notice:
<?php print isset($info['comments']) ? $info['comments'] : 0 ?>

I don't know drupal, and don't know your context exactly, but if you try to access an index that doesn't exists from an array, this kind of notice is displayed.
To avoid such a thing, you can do something like :
if(isset($info['comments'])) {
print $info['comments'];
}

PHP arrays are associative by nature, thus you can have an array composed of all types of keys/values:
arry['stringkey'] = 'somestring';
arry[1] = 'some other string';
etc..
If you were to try and reference an index in the array that is not present without doing any error checking, like so
if(arry[2] == 'some third string')
you'd get an 'undefined index' error. Look into the isset() function for a solution.

You could test if the array has that key:
if (array_key_exists('comments', $info)) {
...
}
But I am not sure if that is what you really want to do.

Related

PHP - Inconsistency with "Undefined offset" error [duplicate]

This question already has answers here:
php array access on boolean
(3 answers)
Closed 5 years ago.
Why does PHP throw a "Notice: Undefined offset" error here:
<?php
$MyVar = array();
echo $MyVar[0]; //Notice: Undefined offset: 0
?>
But not here:
<?php
$MyVar = false;
echo $MyVar[0]; //No error
?>
It's ultimately because in your 2nd example $MyVar[0] is null which isn't an error. You could probably reference $MyVar[0][1][2][3] and get the same result.
The first example isn't null it's a missing index in an array so it warns you.
Undefined offset is provided when there are no values in an array and you're trying to reference an uninitialised index.
In case of the 2nd code, you've assigned(initialised) a value to the variable which is not different from variable[0].
If you assign values for 1st two indexes in 1st example, and refer to the 3rd index, you should get the undefined offset error.
I dont think it is about null or not, but a case of assigning values to indexes.
If you take a C parlance, array is an equivalent of malloc(upto a certain extent). Thankfully PHP does not crash, just throws an undefined index[offset] error

Do I have to check every variable is set before echoing it? [duplicate]

This question already has answers here:
"Notice: Undefined variable", "Notice: Undefined index", "Warning: Undefined array key", and "Notice: Undefined offset" using PHP
(29 answers)
Closed 5 years ago.
I am currently in a process of writing my PHP script, and I am doing it with
E_ALL set in php and I can not allow ANY errors, even
PHP Notice: Undefined variable
And I have many places where i ECHO $myvariable without checking if it's empty, which is causing error mentioned above.
Is it just me or it's extremely stupid to do this for every variable that can be undefined:
if(!empty($myvariable)) {
echo $myvariable;
}
Is this only way to avoid these errors?
EDIT:
Question is not a duplicate, what you refereed to as duplicate has nothing to do with what i asked here.
Three possible solutions:
1st: initialize your var at the very beginning of your code (or method, or class, whatever you're doing)...
$var = "";
// Do stuff with $var
echo $var;
2nd: use a ternary operator
echo (isset($var)) ? $var : "";
3rd: use #
#echo($var);
It is a notice which gives you an insight that your code could produce unexpected results since you did not assign a value (constant or calculated).
You can avoid this error by checking if it's set using the isset function or set a value for that variable at the top of your script.

PHP/HTML syntax error [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
PHP: “Notice: Undefined variable” and “Notice: Undefined index”
first time asking questions here. I am trying to create a small, primitive forum. I am basing it on this: while making changes to it where it is needed.
So far, I have setup the database and all that. Now I am trying to fix the view_topic.php and it is returning "Notice: Undefined index: id" on line 30 something.
This is line 30: $id=$_GET['id'];
You should make sure id is a valid index before accessing it.
$id = isset($_GET['id']) ? $_GET['id'] : null;
Notice: Undefined index:
This means that a piece of code attempts to access an element of an array that does not exist.
So, for example:
$myArray = Array(); // an empty array
echo $myArray['id']; // print 'id' element
// ^^ Oops! No such element yet!
The $_GET array contains the arguments from the querystring, which is the ?id=1 part of your request URL.
You will need to find out why this does not contain the element with key 'id' when id was provided in the URL, and then make your code decide what to do in the case that this value is missing, using a function such as isset or array_key_exists and an if statement.
Most likely you will present a more useful error message and terminate the script, if your code cannot continue without a valid id value.
Are you sure id= exists in the URL? Try adding the following near the top of your code.
var_dump($_GET);
var_dump dumps information about a variable to your screen. In this case, it will display all the GET data sent from your form. This is a debugging technique so you can see if your code is receiving what you expect. If the form uses method="post" and id is a field in the form, then you will need to use $_POST['id'] or $_REQUEST['id'] to access it.

Notice: Undefined index: submit in sample.php on line 25 [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
PHP: “Notice: Undefined variable” and “Notice: Undefined index”
When do we get this error?
Notice: Undefined index: submit in C:\wamp\www\sample.php on line 25
What is the exact meaning of this perticular error?
This means exactly what it says: you're addressing to an undefined index in an array
$arr = array();
echo $arr['foo'];
In the example above the array is empty but I tried to output 'foo' item value, which doesn't exist.
It means you are trying to access a part of an arraythat isn't there.
If you have an array with 5 elements, you ca get to them via:
$array[0] through to $array[4]
But if you try $array[76] which doesn't exist, you will get an undefined Index error.
You've probably got an array that you're accessing like $_POST['submit']. That error message is saying is the element 'submit' of the array doesn't exist, and it's throwing a warning.
You should check that array elements exist before using them isset() before you access them to avoid avoid the warning.
Edit: possible duplicate of this: Undefined index in PHP
have you correctly mentioned the method in your form GET or POST ?? I think you are accessing/testing it without declaring it. Let me know if this is the case.

What is the meaning of the "Use of undefined constant" notice in PHP? [duplicate]

This question already has answers here:
What does the PHP error message "Notice: Use of undefined constant" mean?
(2 answers)
Closed 9 years ago.
Notice: Use of undefined constant username - assumed 'username' in
/home/content/04/7195304/html/header.php on line 54
I get this when writing things like $_COOKIE[username] or $_POST[username].
Edit
So I've been playing around with the code, putting quotes in my POST, COOKIE, and GET's.. I still get the same thing!
It means you likely forgot a $ in front of your variable name.
Edit
You need to encapsulate your call in qoutes. I.e.
$_COOKIE["username"]
or
$_POST["username"]
It probably means you forgot to put a $ in front of your username variable, so it's treating it like a constant instead of a variable.
You should post the code from that line for better help.
You might as well try $_COOKIE['username'] or $_POST['username'], to access the associative arrays with a string.
Sorry, overlooked comment with same advice.

Categories