Skip to content

Instantly share code, notes, and snippets.

View MahdiY's full-sized avatar
🎯
Focusing

Mahdi Yousefi MahdiY

🎯
Focusing
View GitHub Profile
@MahdiY
MahdiY / logit.php
Created August 10, 2018 06:39
easy logging in php
<?php
// log with error_log function
if( !function_exists('log_it') ){
function log_it() {
foreach( func_get_args() as $message )
if( is_array( $message ) || is_object( $message ) )
error_log( print_r( $message, true ) );
else
error_log( $message );
@MahdiY
MahdiY / RawData.php
Last active June 19, 2018 21:47
Use raw data (json) in laravel
<?php
/**
* Developer : MahdiY
* Web Site : MahdiY.IR
* E-Mail : M@hdiY.IR
*/
namespace App\Http\Middleware;
use Closure;