Created
September 23, 2022 10:14
-
-
Save MubinSayed/8c41b51337b5fb80d74f42c6ff7d0716 to your computer and use it in GitHub Desktop.
Laravel - Combines SQL and its bindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Combines SQL and its bindings | |
* | |
* @param \Eloquent $query | |
* @return string | |
*/ | |
public static function getEloquentSqlWithBindings($query) | |
{ | |
return vsprintf(str_replace('?', '%s', $query->toSql()), collect($query->getBindings())->map(function ($binding) { | |
$binding = addslashes($binding); | |
return is_numeric($binding) ? $binding : "'{$binding}'"; | |
})->toArray()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment