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.

When I was trying to recieve a code from PHP page using jQuery Ajax, I found a strange error: "Undefined variable: errors"

<?php
$errors = array("already_signed" => "You are already signed in", "field_empty" => "All fields must be filled", "long_username" => "Username length must be less then 40 symbols", "incorrect_email" => "Your mail is incorrent", "user_exists" => "User with such username already exists", "account_not_found" => "Account not found", "passwords_arent_same" => "Passwords must be the same");
Function check_post() {
    $answer = array("ok" => "false", "answer" => $errors["field_empty"]);
    echo json_encode($answer);
}

check_post();
?>

If I'll echo without function - everything will be ok. Thanks for any help

share|improve this question
PHP or JS error? – Oscar Godson Aug 24 '11 at 18:54
Also, quick question, in PHP shouldn't Function be function? php.net/manual/en/language.functions.php – Oscar Godson Aug 24 '11 at 18:55
"Undefined variable: errors"? PHP – Nausik Aug 24 '11 at 18:55
Whats the output then? – Oscar Godson Aug 24 '11 at 18:56
1  
@oscar: php function names and keywords are case insensitive. variables, on the other hand, are case sensitive. – Marc B Aug 24 '11 at 18:57
show 2 more comments

3 Answers

up vote 3 down vote accepted

You are trying to access a global variable from within the function. In order to acomplish that, you need to use "global" keyword:

<?php
$errors = array("already_signed" => "You are already signed in", "field_empty" => "All fields must be filled", "long_username" => "Username length must be less then 40 symbols", "incorrect_email" => "Your mail is incorrent", "user_exists" => "User with such username already exists", "account_not_found" => "Account not found", "passwords_arent_same" => "Passwords must be the same");
function check_post() {
    global $errors;
    $answer = array("ok" => "false", "answer" => $errors["field_empty"]);
    echo json_encode($answer);
}
check_post();
?>
share|improve this answer

You seem to be missing at least one } in there. As is, your function definition has no close, so it reads as an infinitely recursive call.

As well, you've got $errors being defined OUTSIDE of your function. PHP does not allow "lower" code scopes to see variables defined in higher scopes. You need to declare $errors as a global within the function:

<?php

$errors = array(....);
function check_post() {
   global $errors;
   $answer = ...
   ...
}

check_post();
share|improve this answer
Wow! Thanks! It works now – Nausik Aug 24 '11 at 18:58

That's because the function has got it's own variable scope (see http://ch.php.net/manual/en/language.variables.scope.php). You should use function arguments instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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