From 155cf6aeea9ba7ecbc39face6442d3ce1b03ad8e Mon Sep 17 00:00:00 2001
From: Nils Schwabe
Date: Wed, 4 Jun 2014 14:27:03 +0200
Subject: Add webinterface with functionallity
---
management-interface/lib/api/classUTF.html | 543 +++++++++++++++++++++++++++++
1 file changed, 543 insertions(+)
create mode 100644 management-interface/lib/api/classUTF.html
(limited to 'management-interface/lib/api/classUTF.html')
diff --git a/management-interface/lib/api/classUTF.html b/management-interface/lib/api/classUTF.html
new file mode 100644
index 0000000..111f324
--- /dev/null
+++ b/management-interface/lib/api/classUTF.html
@@ -0,0 +1,543 @@
+
+
+
+
+
+
+
Unicode string manager.
+ More...
+
+
+
+
+
+

+
+
+
+ |
+| | strlen ($str) |
+| |
+| | strrev ($str) |
+| |
+| | stripos ($stack, $needle, $ofs=0) |
+| |
+| | strpos ($stack, $needle, $ofs=0, $case=FALSE) |
+| |
+| | stristr ($stack, $needle, $before=FALSE) |
+| |
+| | strstr ($stack, $needle, $before=FALSE, $case=FALSE) |
+| |
+| | substr ($str, $start, $len=0) |
+| |
+| | substr_count ($stack, $needle) |
+| |
+| | ltrim ($str) |
+| |
+| | rtrim ($str) |
+| |
+| | trim ($str) |
+| |
+| | bom () |
+| |
+| | translate ($str) |
+| |
+| | emojify ($str) |
+| |
+
+
+
Unicode string manager.
+
+
+
+
+
+
+ | UTF::bom |
+ ( |
+ | ) |
+ |
+
+
+
+
Return UTF-8 byte order mark
+
- Returns
- string
+
+
+
+
+
+
+
+
+ | UTF::emojify |
+ ( |
+ |
+ $str | ) |
+ |
+
+
+
+
Translate emoji tokens to Unicode font-supported symbols
+
- Returns
- string
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::ltrim |
+ ( |
+ |
+ $str | ) |
+ |
+
+
+
+
Strip whitespaces from the beginning of a string
+
- Returns
- string
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::rtrim |
+ ( |
+ |
+ $str | ) |
+ |
+
+
+
+
Strip whitespaces from the end of a string
+
- Returns
- string
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::stripos |
+ ( |
+ |
+ $stack, |
+
+
+ |
+ |
+ |
+ $needle, |
+
+
+ |
+ |
+ |
+ $ofs = 0 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Find position of first occurrence of a string (case-insensitive)
+
- Returns
- int|FALSE
+
- Parameters
-
+
+ | $stack | string |
+ | $needle | string |
+ | $ofs | int |
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::stristr |
+ ( |
+ |
+ $stack, |
+
+
+ |
+ |
+ |
+ $needle, |
+
+
+ |
+ |
+ |
+ $before = FALSE |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Returns part of haystack string from the first occurrence of needle to the end of haystack (case-insensitive)
+
- Returns
- string|FALSE
+
- Parameters
-
+
+ | $stack | string |
+ | $needle | string |
+ | $before | bool |
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::strlen |
+ ( |
+ |
+ $str | ) |
+ |
+
+
+
+
Get string length
+
- Returns
- int
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::strpos |
+ ( |
+ |
+ $stack, |
+
+
+ |
+ |
+ |
+ $needle, |
+
+
+ |
+ |
+ |
+ $ofs = 0, |
+
+
+ |
+ |
+ |
+ $case = FALSE |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Find position of first occurrence of a string
+
- Returns
- int|FALSE
+
- Parameters
-
+
+ | $stack | string |
+ | $needle | string |
+ | $ofs | int |
+ | $case | bool |
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::strrev |
+ ( |
+ |
+ $str | ) |
+ |
+
+
+
+
Reverse a string
+
- Returns
- string
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::strstr |
+ ( |
+ |
+ $stack, |
+
+
+ |
+ |
+ |
+ $needle, |
+
+
+ |
+ |
+ |
+ $before = FALSE, |
+
+
+ |
+ |
+ |
+ $case = FALSE |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Returns part of haystack string from the first occurrence of needle to the end of haystack
+
- Returns
- string|FALSE
+
- Parameters
-
+
+ | $stack | string |
+ | $needle | string |
+ | $before | bool |
+ | $case | bool |
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::substr |
+ ( |
+ |
+ $str, |
+
+
+ |
+ |
+ |
+ $start, |
+
+
+ |
+ |
+ |
+ $len = 0 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Return part of a string
+
- Returns
- string|FALSE
+
- Parameters
-
+
+ | $str | string |
+ | $start | int |
+ | $len | int |
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::substr_count |
+ ( |
+ |
+ $stack, |
+
+
+ |
+ |
+ |
+ $needle |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Count the number of substring occurrences
+
- Returns
- int
+
- Parameters
-
+
+ | $stack | string |
+ | $needle | string |
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::translate |
+ ( |
+ |
+ $str | ) |
+ |
+
+
+
+
Convert code points to Unicode symbols
+
- Returns
- string
+
- Parameters
-
+
+
+
+
+
+
+
+
+
+
+
+ | UTF::trim |
+ ( |
+ |
+ $str | ) |
+ |
+
+
+
+
Strip whitespaces from the beginning and end of a string
+
- Returns
- string
+
- Parameters
-
+
+
+
+
+
+
+
The documentation for this class was generated from the following file:
+
--
cgit v1.2.3-55-g7522