Skip to content

Instantly share code, notes, and snippets.

View rahuls360's full-sized avatar
🎯
Focusing

Rahul Makhija rahuls360

🎯
Focusing
  • Bengaluru
View GitHub Profile
<?php
error_reporting(-1); // reports all errors
ini_set("display_errors", "1"); // shows all errors
ini_set("log_errors", 1);
ini_set("error_log", "/tmp/php-error.log");
?>