PDA

View Full Version : تولید url فارسی استاندارد؟



Mohammad-tashi
چهارشنبه 25 فروردین 1395, 12:40 عصر
سلام
من میخام عنوان هرپست یک توی یه فیلد ذخیره شه ..که استاندارد باشه
مثلا فاصله ها تبدیل به خط تیره بشه
یعنی مدیر وارد کرد
عنوان تست بشه عنوان-تست.html
باید چیکارکنم ؟
ضمنا چه چیز های دیگری را باید در url رعایت کنم ؟ مثلا فکر کنم باید علامت های ! و @#%^ را نذارم

لطفا راهنماییم کنید

ممنون

H:Shojaei
چهارشنبه 25 فروردین 1395, 18:54 عصر
این تابع خوبیه واسه این کار:

function seoUrl($string) {
//Lower case everything
$string = strtolower($string);
//Make alphanumeric (removes all other characters)
$string = preg_replace("/[^a-z0-9_\s-]/", "", $string);
//Clean up multiple dashes or whitespaces
$string = preg_replace("/[\s-]+/", " ", $string);
//Convert whitespaces and underscore to dash
$string = preg_replace("/[\s_]/", "-", $string);
return $string;
}

Mohammad-tashi
پنج شنبه 26 فروردین 1395, 14:16 عصر
این تابع خوبیه واسه این کار:

function seoUrl($string) {
//Lower case everything
$string = strtolower($string);
//Make alphanumeric (removes all other characters)
$string = preg_replace("/[^a-z0-9_\s-]/", "", $string);
//Clean up multiple dashes or whitespaces
$string = preg_replace("/[\s-]+/", " ", $string);
//Convert whitespaces and underscore to dash
$string = preg_replace("/[\s_]/", "-", $string);
return $string;
}

برای افزودن.html به آخرش چیکارکنم؟

H:Shojaei
پنج شنبه 26 فروردین 1395, 17:20 عصر
اونو باید با htaccess انجام بدین...
how to add suffix for url htaccess