Skip to content

Instantly share code, notes, and snippets.

@dododedodonl
Created July 2, 2017 02:24
Show Gist options
  • Save dododedodonl/a1e797f083fd04fad64534496a4ad571 to your computer and use it in GitHub Desktop.
Save dododedodonl/a1e797f083fd04fad64534496a4ad571 to your computer and use it in GitHub Desktop.
<?php
if (DB::Connection() instanceof \Illuminate\Database\SQLiteConnection) {
DB::connection()->getPdo()->sqliteCreateFunction('REGEXP', function ($pattern, $value) {
mb_regex_encoding('UTF-8');
return (false !== mb_ereg($pattern, $value)) ? 1 : 0;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment