This file contains 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
<?php declare(strict_types = 1); | |
namespace App\Tests; | |
use Closure; | |
use PHPUnit\Framework\Assert; | |
use ReflectionClass; | |
use ReflectionFiber; | |
use ReflectionFunction; | |
use ReflectionGenerator; |
This file contains 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
CREATE EXTENSION unaccent; | |
CREATE OR REPLACE FUNCTION webalize(varchar) RETURNS text AS $$ | |
SELECT trim(both '-' from regexp_replace(lower(unaccent($1)), '[^a-z0-9]+', '-', 'g')); | |
$$ LANGUAGE SQL; | |
SELECT unaccent('Příliš žlutý kůň 91. stupeň!'); | |
-- Prilis zluty kun 91. stupen! | |
SELECT webalize('Příliš žlutý kůň 91. stupeň!'); |