Skip to main content

Membuat Word Limiter (Limit kata) pada PHP



Biasanya kebanyakan prorammer menggunakan fungsi substr untuk melimit sebuat kata/kalimat,
namun kekurangan substr biasanya pemotongannya tidak friendly, nah untuk membuat potongan kata/kalimat yang friendly silahkan gunakan kode word limiter dibawah ini

- Limit Word
kode untuk melimit kata


function limit_word($string, $word_limit = null)
{
$words = explode(' ', $string);
if (count($words) > $word_limit):
$kata = implode(' ', array_slice($words, 0, $word_limit)) ;
return clean_text($kata)."...";
else:
$kata = implode(' ', array_slice($words, 0, $word_limit)) ;
return clean_text($kata)."...";
endif;
}


- Clean Text
  berfungsi untuk menghapus tag html

function clean_text($text)
{
return trim(preg_replace('/ +/', ' ', preg_replace('/[^A-Za-z0-9 ]/', ' ', urldecode(html_entity_decode(strip_tags($text))))));
}

Bagaimana cara penggunaanya?
Klik Disini 




Comments

Popular posts from this blog

Download Pinnacle TVCenter 6.4.9.1033 Software

Download Free Software Pinnacle TVCenter 6.4.9.1033 - Full Version Software Pinnacle TVCenter 6.4.9.1033 SIZE: 592 MB What does TVCenter 6 - Fast and compact installation - Drastically reduced system requirements - Optimized , rapid tuning - New graphical user interface - Full HD Support Download Links Pinnacle TVCenter Download

PreSonus Studio One Pro 2.6 Free Download

Download Free Software PreSonus Studio One Pro - Full Version PreSonus Studio One Pro 2.6.5.30360 (Win/Mac) SIZE: 127.88 MB/511.75 MB What's New in PreSonus Studio One 2.6.5: - SoundCloud client to support new API - Studio One 2.6.5 fixes the following issues: - [OSX] Save As dialog path is the folder again Download Links Download PreSonus Studio One Pro Free

Source code Aplikasi Kasir model Booth dengan php mysql

Source code aplikasi kasir model booth ini menggunakan PHP 5.6 dan database MYSQL dibuat menggunakan PHP Native,  Kasir : FULL AJAX Datatables Server Side,