diff options
author | Mario <mario@mariovavti.com> | 2018-01-09 09:00:20 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-01-09 09:00:20 +0100 |
commit | 4f4d0e416eac87121898b8a27b1afa6065ff17a2 (patch) | |
tree | aae7f2582b2b9c6596dcbf87c06a836434140830 /library/langdet/docs/example_clui.php | |
parent | 22c89b6c660e185d5c5c6362acf23b145d932d15 (diff) | |
parent | 8fde0f01b8472082158b38386046ed606bcfbc49 (diff) | |
download | volse-hubzilla-3.0.tar.gz volse-hubzilla-3.0.tar.bz2 volse-hubzilla-3.0.zip |
Merge branch '3.0RC'3.0
Diffstat (limited to 'library/langdet/docs/example_clui.php')
-rw-r--r-- | library/langdet/docs/example_clui.php | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/library/langdet/docs/example_clui.php b/library/langdet/docs/example_clui.php deleted file mode 100644 index 8e7d8577d..000000000 --- a/library/langdet/docs/example_clui.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -/** - * example usage (CLI) - * - * @package Text_LanguageDetect - * @version CVS: $Id: example_clui.php 322305 2012-01-15 00:04:17Z clockwerx $ - */ - -require_once 'Text/LanguageDetect.php'; - -$l = new Text_LanguageDetect; - -$stdin = fopen('php://stdin', 'r'); - -echo "Supported languages:\n"; -$langs = $l->getLanguages(); -sort($langs); -echo join(', ', $langs); - -echo "\ntotal ", count($langs), "\n\n"; - -while ($line = fgets($stdin)) { - $result = $l->detect($line, 4); - print_r($result); - $blocks = $l->detectUnicodeBlocks($line, true); - print_r($blocks); -} - -fclose($stdin); -unset($l); - -/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ - -?> |