yfrommelt/stop-words

v0.0.9 2019-01-15 13:09 UTC

This package is auto-updated.

Last update: 2024-09-16 03:41:33 UTC


README

安装

composer require yfrommelt/stop-words

支持的语言

  • 丹麦 da
  • 荷兰 nl
  • 英语 en
  • 芬兰 fi
  • 法语 fr
  • 德语 de
  • 匈牙利 hu
  • 意大利 it
  • 挪威 no
  • 葡萄牙 pt
  • 俄语 ru
  • 西班牙 es
  • 瑞典 sv
  • 土耳其 tr

用法

use Yfrommelt\StopWords;

// Get au list of stop words
StopWords::get('fr')

// Transform a string to title case
$str = "Marie A Un Petit Agneau Et Elle L'Aime BEAUCOUP.";
$str = StopWords::toTitleCase('fr', $str);
echo $str; // Marie A un Petit Agneau et elle l'Aime Beaucoup.

// Transform a string to slug
$str = "Marie A Un Petit Agneau Et Elle L'Aime BEAUCOUP.";
$str = StopWords::toSlug('fr', $str);
echo $str; // marie-a-petit-agneau-aime-beaucoup