Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is this?

This is a number of answers about warnings, errors and notices you might encounter while programming PHP and have no clue how to fix. This is also a Community Wiki, so everyone is invited to participate in adding to and maintaining this list.

Why is this?

Questions like "Headers already sent" or "Calling a member of a non-object" pop up frequently on StackOverflow. The root cause of those questions is always the same. So the answers to those questions typically repeat them and then show the OP which line to change in his/her particular case. These answers do not add any value to the site because they only apply to the OP's particular code. Other users having the same error can not easily read the solution out of it because they are too localized. That is sad, because once you understood the root cause, fixing the error is trivial. Hence, this list tries to explain the solution in a general way to apply.

What should I do here?

If your question has been closevoted with this list, please find your error message below and apply the fix to your code. The answers usually contain further links to investigate in case it shouldn't be clear from the general answer alone.

If you want to contribute, please add your "favorite" error message, warning or notice, one per answer, a short description what it means (even if it is only highlighting terms to their manual page), a possible solution or debugging approach and a listing of existing Q&A that are of value. Also, feel free to improve any existing answers.

The List

Also see

share|improve this question
18  
Why do people vote to close stuff like this? If there is an issue with the way it's asked, it's Community Wiki so feel free to edit it into a form you think is acceptable, otherwise I wish someone would explain. If there is good reason that this content doesn't belong here, I'd like to understand why. Is it just too much info for one post? – Wesley Murch Oct 7 '12 at 21:17
4  
By the rules, this is NARQ. However, this is clearly an attempt to create a canonical reference, useful for closing other questions as duplicates. – Charles Oct 7 '12 at 21:22
7  
@ruakh Yeah, but it wasn't meant as a real question. It's a reference. It is in the spirit of the Operator reference. See "Why is this". I'd rather have one post that is not a real question, than the steady influx of duplicates asking "how to solve error XY". – Gordon Oct 7 '12 at 21:36
6  
Nah, it's too generic. You're trying to write a whole damn book here. – DeadMG Oct 7 '12 at 21:56
4  
Surely there should be one question for each item on the list, and in most cases, there probably already is. – rjmunro Oct 7 '12 at 23:47
show 28 more comments

20 Answers

Warning: Cannot modify header information - headers already sent

Happens when your script tries to send a HTTP header to the client but there already was output before, which resulted in headers to be already sent to the client.

This is an E_WARNING and it will not stop the script.

A typical example would be a template file like this:

<html>
    <?php session_start(); ?>
    <head><title>My Page</title>
</html>
...

The session_start() function will try to send headers with the session cookie to the client. But PHP already sent headers when it wrote the <html> element to the output stream. You'd have to move the session_start() to the top.

You can solve this by going through the lines before the code triggering the Warning and check where it outputs. Move any header sending code before that code.

An often overlooked output is new lines after PHP's closing ?>. Good practise is to omit them when they are the last thing in the file. Likewise, another common cause for this warning when your code is all PHP, is when the starting <?php have an empty space or line before it, causing the webserver to send the headers and the whitespace/newline thus when PHP starts parsing won't be able to submit any header.

If your file has more than one block in it, you should not have any spaces in between them. (Note: You might have multiple blocks if you had code that was automatically constructed)

Also make sure you don't have any Byte Order Marks in your code, for example when the encoding of the script is UTF-8 with BOM.

Related questions:

share|improve this answer
2  
Probably a good idea to add a note about UTF-8 BOM. – luiscubal Oct 7 '12 at 16:23
3  
@luiscubal click "edit" and write the note :-) – Jocelyn Oct 7 '12 at 16:37
If you are using WordPress, check the theme files. When I upgraded a site to a new version of WordPress, I was unable to update the theme because it has not been updated in several years. This problem cropped up. It turned out that the functions.php file had more than one <? ?> block with spaces in between. – Roy Leban Mar 31 at 8:41

Fatal error: Call to a member function ... on a non-object

Happens with code similar to xyz->method() where xyz is not an object and therefore that method can not be called.

This is a fatal error which will stop the script.

Most often a sign that the code has missing checks for error conditions. Validate that an object is actually an object before calling it's methods.

A typical example would be

// ... some code using PDO
$statement = $pdo->prepare('invalid query', ...);
$statement->execute(...);

In the example above, the query cannot be prepared and prepare() will assign false to $statement. Trying to call the execute() method will then result in the Fatal Error because false is a "non-object". It is a boolean.

Related Questions:

share|improve this answer

Notice: Undefined Index

Happens when you try to access an array by a key that does not exist in the array.

A typical example for an Undefined Index notice would be (demo)

$data = array('foo' => '42', 'bar');
echo $data['spinach'];
echo $data[1];

Both spinach and 1 do not exist in the array, causing an E_NOTICE to be triggered.

The solution is to make sure the index or offset does exist, either by using array_key_exists or isset prior to accessing that index.

$data = array('foo' => '42', 'bar');
if (array_key_exists('spinach', $data)) {
    echo $data['spinach'];
}
else {
    echo 'No key spinach in array';
}

Related questions:

share|improve this answer

Fatal error: Can't use function return value in write context

This usually happens when using a function directly with empty.

Example:

if (empty(is_null(null))) {
  echo 'empty';
}

This is because empty is a language construct and not a function, it cannot be called using variable functions.

Related Questions:

share|improve this answer

Nothing is seen. The page is empty and white.

Also known as the White Page or Screen Of Death. This happens when error reporting is turned off and a fatal (often syntax) error occurred.

If you have error logging enabled, you will find the concrete error message in your error log.

Sometimes it might be more straight forward to temporarily enable the display of errors. The white page then will turn into the error message. Take care because these errors are visible to everybody visiting the website.

This can be easily done by adding at the top of the script the following PHP code:

ini_set('display_errors', 1); error_reporting(~0);

That code will turn on the display of errors and set the reporting to the highest level.
Since the ini_set() is executed at runtime it has no effects on parsing/syntax errors. Those errors will appear in the log. If you want to display them as well in the output (e.g. in a browser) you have to set the directive display_startup_errors to true. Do this either in the php.ini or a .htaccess or by any other method that affects the configuration before runtime.

Looking in the log or using the display, you will get a much better error message and the line of code where your script comes to halt.

Related Questions:

Related Errors:

share|improve this answer
6  
Who downvoted this answer instead of editing it?! – Jocelyn Oct 10 '12 at 10:39
error_reporting(~0); why not -1? That is what ~0 evaluates to, and is much less cryptic. – Fabrício Matté Mar 31 at 2:43
I think both are similarly cryptic. ~0 is more explicit IMO: negate the empty bit set, i. e. enable all flags. -1 is not meant to stand for «not found» like in strpos() in C, but as a bitset with all flags set, because -1 is binary 1111'1111'1111'1111 (for 32 bits). – nalply Mar 31 at 12:04
Oops, 1111'1111'1111'1111 is really 16 bits, but I hope you understand what I mean. – nalply Mar 31 at 13:38

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given

First and foremost:

Please, don't use mysql_* functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial.


Happens with try to fetch data from the result of mysql_query while the query failed.

This is a warning and won't stop the script, but will make your program wrong.

You need to check the result returned by mysql_query by

$res = mysql_query($sql);
if (!$res) {
   die(mysql_error());
}
// after the checking, do the fetch work.

Related Questions:

Related Errors:

share|improve this answer
1  
Just a note. If mysql_query isn't bad enough, adding or die on top of it is adding insult to injury. – Madara Uchiha Oct 7 '12 at 22:16
1  
Who downvoted this answer instead of editing it?! – Jocelyn Oct 10 '12 at 10:40

Fatal error: Using $this when not in object context

Happens when using $this in a static method.

Example:

class Foo {
   protected $var;
   public function __construct($var) {
       $this->var = $var;
   }

   public static function bar () {
       #  ^^^^^^
       echo $this->var;
       #    ^^^^^
   }
}

Foo::bar();

How to fix: review your code again, $this could only used in object context, and should never in a static method. And also, static method should not access the non-static property. Use self::$static_property to access the static property.

Related Questions:

share|improve this answer
You might also want to mention how this works w/ closures (even in non-static methods) and how it's "fixed" in 5.4. – Kendall Hopkins Oct 7 '12 at 18:12
@hakre I was talking about a static call inside a Closure. Like $closure = function() { self::method(); }. – Kendall Hopkins Oct 9 '12 at 16:55
@KendallHopkins: That is a different error: "Fatal error: Cannot access self:: when no class scope is active" However with $this you can trigger the bespoken "Fatal error: Using $this when not in object context" : $closure = function() { $this->method(); }; – hakre Oct 9 '12 at 17:02

Fatal error: Allowed memory size of xxxx bytes exhausted (tried to allocate xxx bytes)

There is not enough memory to run your script. PHP has reached the memory limit and stops executing it. This error is fatal, the script stops.

The value of the memory limit can be configured either in the php.ini file or by using ini_set('memory_limit', '1G'); in the script (which will overwrite the value defined in php.ini). If this error occurred when your script was not doing memory-intensive work, you need to check your code to see whether there is a memory leak. The memory_get_usage function is your friend.

Related Questions:

share|improve this answer

Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM

The scope resolution operator is also called "Paamayim Nekudotayim" from the Hebrew פעמיים נקודתיים‎. which means "double colon" or "double dot twice".

This error typically happens if you inadvertently put :: in your code.

Related Questions:

Documentation:

share|improve this answer

Notice: Use of undefined constant xxx - assumed 'xxx'

This notice occurs when a token is used in the code and appears to be a constant, but a constant by that name is not defined.

One of the most common causes of this notice is failure to quote a string used as an associative array key.

For example:

// Wrong
echo $array[key];

// Right
echo $array['key'];

Another common causes is a missing $ (dollar) sign in front of a variable name:

// Wrong
echo varName;

// Right
echo $varName;

It can also be a sign that a needed PHP extension or library is missing when you try to access a constant defined by that library.

Related Questions:

share|improve this answer
I would say the most common cause is forgetting $ in front of a variable, not arrays. – Overv Oct 10 '12 at 8:22

Fatal error: Call to undefined function XXXXX

Happens when you try to call a function that is not defined yet. Common causes include missing extensions and includes, conditional function declaration, function in function declaration or simple typos.

Example 1 - Conditional Function Declaration

$someCondition = false;
if ($someCondition === true) {
    function fn() {
        return 1;
    }
}
echo fn(); // triggers error

In this case, fn() will never be declared because $someCondition is not true.

Example 2 - Function in Function Declaration

function createFn() 
{
    function fn() {
        return 1;
    }
}
echo fn(); // triggers error

In this case, fn will only be declared once createFn() gets called. Note that subsequent calls to createFn() will trigger an error about Redeclaration of an Existing function.

In case of a missing extension, install that extension and enable it in php.ini. Refer to the Installation Instructions in the PHP Manual for the extension your function appears in.

In case of missing includes, make sure to include the file declaring the function before calling the function.

In case of typos, fix the typo.

Related Questions:

share|improve this answer

MySql: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ... at line ...

This error is often caused because you forgot to properly escape the data passed to a MySQL query.

An example of what not to do (the "Bad Idea"):

$query = "UPDATE `posts` SET my_text='{$_POST['text']}' WHERE id={$_GET['id']}";
mysqli_query($db, $query);

This code could be included in a page with a form to submit, with an URL such as http://example.com/edit.php?id=10 (to edit the post n°10)

What will happen if the submitted text contains single quotes? $query will end up with:

$query = "UPDATE `posts` SET my_text='I'm a PHP newbie' WHERE id=10';

And when this query is sent to Mysql, it will complain that the syntax is wrong, because there is an extra single quote in the middle.

To avoid such errors, you MUST always escape the data before use in a query.

Escaping data before use in a SQL query is also very important because if you don't, your script will be open to SQL injections. An SQL injection may cause alteration, loss or modification of a record, a table or an entire database. This is a very serious security issue!

Documentation:

share|improve this answer
1  
In addition, if you don't your site will be hacked by bots automatically – gladoscc Oct 7 '12 at 22:32
@gladoscc Click "edit" and modify the answer. I am aware it can be improved. – Jocelyn Oct 8 '12 at 0:50

Parse error: syntax error, unexpected T_XXX

Happens when you have T_XXX token in unexpected place, unbalanced (superfluous) parentheses, use of short tag without activating it in php.ini, and many more.

Related Questions:

For further help see:

share|improve this answer

Notice: Undefined variable

Happens when you try to use a variable that wasn't previously defined.

A typical example would be

foreach ($items as $item) {
    // do something with item
    $counter++;
}

If you didn't define $counter before, the code above will trigger the notice.

The correct way would be to set the variable before using it, even if it's just an empty string like

$counter = 0;
foreach ($items as $item) {
    // do something with item
    $counter++;
}

Related Questions

share|improve this answer

Warning: open_basedir restriction in effect

This warning can appear with various functions that are related to file and directory access. It warns about a configuration issue.

When it appears, it means that access has been forbidden to some files.

The warning itself does not break anything, but most often a script does not properly work if file-access is prevented.

The fix is normally to change the PHP configuration, the related setting is called open_basedir.

Sometimes the wrong file or directory names are used, the fix is then to use the right ones.

Related questions:

share|improve this answer
This occurs most often on a shared host, people don't usually lock themselves out of directories :-) – uınbɐɥs Oct 7 '12 at 20:37
1  
@ShaquinTrifonoff: One might think that, but I also see also quite some error-reports on (badly?) pre-configured Plesk managed server which are normally not related to shared hosting. – hakre Oct 7 '12 at 20:40
Who downvoted this answer instead of editing it?! – Jocelyn Oct 10 '12 at 10:39

Fatal error: Cannot redeclare class [class name]

Fatal error: Cannot redeclare [function name]

This is usually because you have used require or include where you should be using require_once or include_once.

When a class or a function is declared in PHP, it is immutable, and cannot later be declared with a new value.

Consider the following code:

class.php

<?php

  class MyClass {
    public function doSomething() {
      // do stuff here
    }
  }

index.php

<?php

   function do_stuff() {
     require 'class.php';
     $obj = new MyClass;
     $obj->doSomething();
   }

   do_stuff();
   do_stuff();

The second call to do_stuff() will produce the error above. By changing require to require_once, we can be certain that the file that contains the definition of MyClass will only be loaded once, and the error will be avoided.

share|improve this answer

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE

This error is most often encountered when attempting to reference an array value with a quoted key for interpolation inside a double-quoted string, when the entire complex variable construct is not enclosed in {}.

The error case:

This will result in Unexpected T_ENCAPSED_AND_WHITESPACE:

echo "This is a double-quoted string with a quoted array key in $array['key']";
//---------------------------------------------------------------------^^^^^

Possible fixes:

In a double-quoted string, PHP will permit array key strings to be used unquoted, and will not issue an E_NOTICE. So the above could be written as:

echo "This is a double-quoted string with an un-quoted array key in $array[key]";
//------------------------------------------------------------------------^^^^^

The entire complex array variable and key(s) can be enclosed in {}, in which case they should be quoted to avoid an E_NOTICE. The PHP documentation recommends this syntax for complex variables.

echo "This is a double-quoted string with a quoted array key in {$array['key']}";
//--------------------------------------------------------------^^^^^^^^^^^^^^^
// Or a complex array property of an object:
echo "This is a a double-quoted string with a complex {$object->property->array['key']}";

Of course, the alternative to any of the above is to concatenate the array variable in instead of interpolate it:

echo "This is a double-quoted string with an array variable " . $array['key'] . " concatenated inside.";
//----------------------------------------------------------^^^^^^^^^^^^^^^^^^^^^

For reference, see the section on Variable Parsing in the PHP Strings manual page

share|improve this answer

Warning: [function]: failed to open stream: [reason]

It happens when you call a file usually by include, require or fopen and PHP couldn't find the file or have not enough permission to load the file.

One common mistake is to not use an absolute path. This can be easily solved by using a full path or magic constants like __DIR__ or dirname(__FILE__):

include __DIR__ . '/inc/globals.inc.php';

or:

require dirname(__FILE__) . '/inc/globals.inc.php';

Ensuring the right path is used is one step in troubleshooting these issues, this can also be related to non-existing files, rights of the filesystem preventing access or open basedir restrictions by PHP itself.

Related Questions:

Related Errors:

share|improve this answer

Warning: [function] expects parameter 1 to be resource, boolean given

(A more general variation of Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given)

Resources are a type in PHP (like strings, integers or objects). A resource is an opaque blob with no inherently meaningful value of its own. A resource is specific to and defined by a certain set of PHP functions or extension. For instance, the Mysql extension defines two resource types:

There are two resource types used in the MySQL module. The first one is the link identifier for a database connection, the second a resource which holds the result of a query.

The cURL extension defines another two resource types:

... a cURL handle and a cURL multi handle.

When var_dumped, the values look like this:

$resource = curl_init();
var_dump($resource);

resource(1) of type (curl)

That's all most resources are, a numeric identifier ((1)) of a certain type ((curl)).

You carry these resources around and pass them to different functions for which such a resource means something. Typically these functions allocate certain data in the background and a resource is just a reference which they use to keep track of this data internally.


The "... expects parameter 1 to be resource, boolean given" error is typically the result of an unchecked operation that was supposed to create a resource, but returned false instead. For instance, the fopen function has this description:

Return Values

Returns a file pointer resource on success, or FALSE on error.

So in this code, $fp will either be a resource(x) of type (stream) or false:

$fp = fopen(...);

If you do not check whether the fopen operation succeed or failed and hence whether $fp is a valid resource or false and pass $fp to another function which expects a resource, you may get the above error:

$fp   = fopen(...);
$data = fread($fp, 1024);

Warning: fread() expects parameter 1 to be resource, boolean given

You always need to error check the return value of functions which are trying to allocate a resource and may fail:

$fp = fopen(...);

if (!$fp) {
    trigger_error('Failed to allocate resource');
    exit;
}

$data = fread($fp, 1024);

Related Errors:

share|improve this answer

Possible scenario

I can't seem to find where my code has went wrong. Here is my full error:

Parse error: syntax error, unexpected T_VARIABLE on line x

what i am trying

$sql = 'SELECT * FROM dealer WHERE id="'$id.'"';

Answer

Parse error: A problem with the syntax of your program, such as leaving a semicolon off of the end of a statement or in like in above case missing . operator . The interpreter stops running your program when it encounters a parse error.

In simple word this is a syntax error, meaning that there is something in your code stopping it from being parsed correctly and therefore run.

What you should do is check carefully at the lines around where the error is for any simple mistakes

That error message means that in line x of the file, the PHP interpreter was expecting to see an open parenthesis but instead, it encountered something called T_VARIABLE. That T_VARIABLE thing is called a token. It's the PHP interpreter's way of expressing different fundamental parts of programs. When the interpreter reads in a program, it translates what you've written into a list of tokens. Wherever you put a variable in your program, there is aT_VARIABLE token in the interpreter's list.

Good read : List of Parser Tokens (Thanks @hakre for link )

so make sure you enable at least E_PARSE in your php.ini. Parse errors should not exist in production scripts.

i always recommended to while coding

error_reporting(E_ALL);

php error reporting

Also a good idea to use IDE which will let you know parse error while typing. You can sue

  1. NetBeans (fine peace of beauty, free)(imho its best)
  2. PhpStorm (Uncle Gordon love this :P , paid)
  3. Eclipse (beauty and the beast free)
share|improve this answer
Nice list of IDEs, you can try as well PHPstorm for free [as in beer] (yes, it's really a good piece of SW), the benefit with NetBeans and Eclipse is that those two are Free Software [as in beer and more importantly freedom]. – hakre Mar 31 at 1:08
also: php.net/tokens – hakre Mar 31 at 1:09
Lol... thankyou for php manual link will edit – NullPoiиteя Mar 31 at 2:28

protected by NullPoiиteя May 15 at 6:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.