Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php error log

ini_set("log_errors", 1); // Enable error logging
ini_set("error_log", "/tmp/php-error.log"); // set error path
Comment

php error log

cat /var/log/php7.4-fpm.log
#change php version
Comment

how to see php error log

/usr/local/apache/logs/error_log
Comment

php error log

// Php Error Log
error_log("Error message");

// Log and Array
error_log( print_r( [
  __METHOD__,
  'error_key_1' => 'error_value'
] ) );
Comment

php custom error log

// You can easily create your own function to handle logging, like so:

/***
	Simple function to log a value to a text file
    Takes 1 parameter: the value to log to the file, as a STRING
***/
function log_data($value)
{
	define('LOG_FILE_PATH', 'form-data-log.txt'); // define the path to the file that you would like to have created (if it does not yet exist)
	$time_stamp = date("Y-m-d H:i:s"); // get the current time
	$file_pointer = fopen(LOG_FILE_PATH, 'a'); // open the log file (in 'append' mode)
  	fwrite($file_pointer, $time_stamp . " ---> " . $value . "
"); // log the value to the file
  	fclose($data_log); // ALWAYS remember to close the log file after writing to it!
}
Comment

PREVIOUS NEXT
Code Example
Php :: PHP OOP - Inheritance 
Php :: How to insert header in php 
Php :: rand in codeigniter 
Php :: laravel api error return homepage 
Php :: 0 
Php :: laravel best practices 
Php :: taxonomy-{taxonomy-slug}.php 
Php :: laravel multiple images upload 
Php :: Publish Spatie Laravel Permission 
Php :: wordpress add query string to url 
Php :: php regex named groups 
Php :: list function php 
Php :: magento Fatal error: Allowed memory size of 134217728 bytes exhausted 
Php :: how to append an array into associative array 
Php :: view blade not found in laravel 
Php :: php array if 
Php :: status validation laravel 
Php :: laravel eloquent relationships 
Php :: php best crud generator 
Php :: Basic HTTP Authentication example 
Php :: php locale 
Php :: router php 
Php :: what is actullay work model in laravel 
Php :: contractors php 
Php :: findOneBy 
Php :: ezSql PDO Connection 
Php :: Filtrer les articles WordPress mis en avant 
Php :: join with 2 table where id match in table 1 comma separated 
Php :: layer order matplotlib 
Php :: php Write a program to reverse an array or string 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =