Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
a9e5e5a9
Unverified
Commit
a9e5e5a9
authored
Feb 15, 2018
by
Grégoire Paris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace foreach and strtr with regex + addcslashes
parent
7a92de7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+9
-7
No files found.
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
a9e5e5a9
...
@@ -42,9 +42,12 @@ use Doctrine\DBAL\Schema\TableDiff;
...
@@ -42,9 +42,12 @@ use Doctrine\DBAL\Schema\TableDiff;
use
Doctrine\DBAL\TransactionIsolationLevel
;
use
Doctrine\DBAL\TransactionIsolationLevel
;
use
Doctrine\DBAL\Types
;
use
Doctrine\DBAL\Types
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Types\Type
;
use
function
addcslashes
;
use
function
implode
;
use
function
preg_quote
;
use
function
preg_replace
;
use
function
sprintf
;
use
function
sprintf
;
use
function
strlen
;
use
function
strlen
;
use
function
strtr
;
/**
/**
* Base class for all DatabasePlatforms. The DatabasePlatforms are the central
* Base class for all DatabasePlatforms. The DatabasePlatforms are the central
...
@@ -3592,12 +3595,11 @@ abstract class AbstractPlatform
...
@@ -3592,12 +3595,11 @@ abstract class AbstractPlatform
*/
*/
final
public
function
escapeStringForLike
(
string
$inputString
,
string
$escapeChar
)
:
string
final
public
function
escapeStringForLike
(
string
$inputString
,
string
$escapeChar
)
:
string
{
{
$replacePairs
=
[
$escapeChar
=>
$escapeChar
.
$escapeChar
];
return
preg_replace
(
foreach
(
$this
->
getLikeWildcardCharacters
()
as
$wildcardChar
)
{
'~(['
.
preg_quote
(
implode
(
''
,
$this
->
getLikeWildcardCharacters
())
.
$escapeChar
,
'~'
)
.
'])~u'
,
$replacePairs
[
$wildcardChar
]
=
$escapeChar
.
$wildcardChar
;
addcslashes
(
$escapeChar
,
'\\'
)
.
'$1'
,
}
$inputString
);
return
strtr
(
$inputString
,
$replacePairs
);
}
}
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment