Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8292303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:25:48+00:00 2026-06-08T13:25:48+00:00

While I’m trying to handle WARNING messages, I’m getting error for global variable/array (on

  • 0

While I’m trying to handle WARNING messages, I’m getting error for global variable/array (on last print_r line):

Notice: Undefined variable: errors in……..

I tried to declare $errors outside of function as well but same problem.

Thanks

My code:

set_error_handler('validation_error_handler', E_WARNING);

function validation_error_handler($error_no, $error_message)
{
    global $errors;
    $errors[] = $error_message;
}

echo '<pre>'; print_r($errors); echo '</pre>';
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T13:25:49+00:00Added an answer on June 8, 2026 at 1:25 pm

    You need to declare $errors as an array first:

    set_error_handler('validation_error_handler', E_WARNING);
    $errors = array(); // Add this...
    

    Update:

    set_error_handler('validation_error_handler', E_WARNING);
    
    $errors = array();
    
    function validation_error_handler($error_no, $error_message)
    {
        global $errors;
        $errors[] = $error_message;
    }
    
    echo preg_match();
    
    echo '<pre>'; print_r($errors); echo '</pre>';
    

    This will print

    <pre>Array
    (
        [0] => preg_match() expects at least 2 parameters, 0 given
    )
    </pre>
    

    Make sure your error/warning occurs before you print_r($errors);

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

while trying to insert data i am getting this error 07-29 18:15:19.909: E/sqlite(863): android.database.sqlite.SQLiteException:
While installing Visual Studio 2010 Service Pack 1, I am getting this error: Installation
while installation of IO::Pty package at windows vista getting below error: C:/MinGW/msys/1.0/lib/perl5/5.8/msys/CORE/perl.h:925:27: fatal error:
While sending back parameters getting this error Error : The Out Parameter must be
While trying to build the mysql2 gem with ruby 1.9.2-p320 on Fedora 16, I
while using document cookie <script typ=text/javascript> document.domain=example.com; </script> I got an error.i don't know
While trying to call an EJB made using NETbeans (using jdk1.7) from a client
while working with linq query i'm receiving error System.NullReferenceException: Object reference not set to
While trying to install a program from source I found that it installed libraries
While running a makefile in gcc 4.1.2 (linux 5), I got the following error

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.