Kodları lütfen aşağıdaki butonları kullanarak renklendirin. Örnek: <php> echo "Selam Dünya"; </php>
Yardım
karakter kaldı

Mysql functions kapatılmamış tırnak hatası

Merhabalar,
şöyle bir fonksiyon buldum mysql'de bunu yaklasık 2 hafta önce denediğimde oluşturmuştu
show function status ile function lara bakıyorum bu fonksiyon yok hatam nerede acaba
CREATE FUNCTION seo_yap(mix);
BEGIN
DECLARE @seo_title VARCHAR(255);
SET @seo_title=REPLACE(mix,' ','-');
SET @seo_title=REPLACE(seo_title,'ö','o');
SET @seo_title=REPLACE(seo_title,'Ö','o');
SET @seo_title=REPLACE(seo_title,'ş','s');
SET @seo_title=REPLACE(seo_title,'Ş','s');
SET @seo_title=REPLACE(seo_title,'Ç','c');
SET @seo_title=REPLACE(seo_title,'ç','c');
SET @seo_title=REPLACE(seo_title,'Ğ','g');
SET @seo_title=REPLACE(seo_title,'ğ','g');
SET @seo_title=REPLACE(seo_title,'Ü','g');
SET @seo_title=REPLACE(seo_title,'İ','i');
SET @seo_title=REPLACE(seo_title,'ı','i');
SET @seo_title=REPLACE(seo_title,'I','i');
SET @seo_title=lower(seo_title);
SET @seo_title=trim(seo_title);
SET @seo_title=REPLACE(seo_title,' ','-');
SET @seo_title=REPLACE(seo_title,'----','-');
SET @seo_title=REPLACE(seo_title,'---','-');
SET @seo_title=REPLACE(seo_title,'--','-');
RETURN seo_title;
END $$
+0
-0
Cevaba KatılıyorumKatılmıyorum
Cevap Yaz Yorum Yaz Arşivime Ekle Takip Et

Cevaplar

Hiç cevap bulunamadı. İlk cevabı siz yazın.