Doctrine\DBAL\Platforms\MySqlPlatform::getLocateExpression PHP Method

getLocateExpression() public method

{@inheritDoc}
public getLocateExpression ( $str, $substr, $startPos = false )
    public function getLocateExpression($str, $substr, $startPos = false)
    {
        if ($startPos == false) {
            return 'LOCATE(' . $substr . ', ' . $str . ')';
        }
        return 'LOCATE(' . $substr . ', ' . $str . ', ' . $startPos . ')';
    }
MySqlPlatform