php man page for php_errormsg

Query: php_errormsg

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

PHP_ERRORMSG(3) 							 1							   PHP_ERRORMSG(3)

$php_errormsg - The previous error message

       $php_errormsg is a variable containing the text of the last error message generated by PHP. This variable will only be available within the
       scope in which the error occurred, and only if the track_errors configuration option is turned on (it defaults to off).

       Warning

	       If a user defined error handler (set_error_handler(3)) is set $php_errormsg is only set if the error handler returns FALSE.

       Example #1

	      $php_errormsg example

	      <?php
	      @strpos();
	      echo $php_errormsg;
	      ?>

	      The above example will output something similar to:

	      Wrong parameter count for strpos()

PHP Documentation Group 													   PHP_ERRORMSG(3)
Related Man Pages
strstr(3) - php
restore_exception_handler(3) - php
eval(3) - php
runkit_sandbox_output_handler(3) - php
set_exception_handler(3) - php
Similar Topics in the Unix Linux Community
Access denied for user at localhost