String helper class
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
<?php /** * * String helper class * */ abstract class Sheldon_Misc_String_Helper { /** * @param $sStr - String to clean * * @return string clean string * */ static function cleanWhitespaces( $sStr ) { if ( ! empty( $sStr ) ) { return preg_replace('/\s+/', '', $sStr ); } return $sStr; } /** * reverse function for nl2br * * @param $string - string with br's * * @return string - string with \n */ static function br2nl( $string ) { return preg_replace( '/\<br(\s*)?\/?\>/i', "\n", $string ); } /** * @param $string - string with * @param bool $xhtml - deliver xhtml confom br's or not (<br /> or <br>) * * @return mixed - string with br's */ static function realNl2br( $string, $xhtml = true ) { $replace = '<br />'; if ( ! $xhtml ) { $replace = '<br>'; } return str_replace( "\n", $replace, $string ); } /** * explodes a string to an array. Then all values are trimed and lowered * * @param $string * @param $delimiter * * @return array */ static function trimToLowerExplode( $string, $delimiter = ',' ) { return array_map( 'strtolower', array_map( 'trim', explode( $delimiter, $string ) ) ); } /** * explodes a string to an array. Then all values are trimed and made * uppercase * * @param $string * @param $delimiter * * @return array */ static function trimToUpperExplode( $string, $delimiter = ',' ) { return array_map( 'strtoupper', array_map( 'trim', explode( $delimiter, $string ) ) ); } /** * explodes a string to an array. Then all values are trimed * * @param $string * @param $delimiter * * @return array */ static function trimExplode( $string, $delimiter = ',' ) { return array_map( 'trim', explode( $delimiter, $string ) ); } /** * Implodes an array to a string. All values are trimed before * * @param array $aArray * @param string $sGlue * * @return string */ static function trimImplode( array $aArray, $sGlue = ',' ) { return implode( $sGlue, array_map( 'trim', $aArray ) ); } /** * Checks if the string $haystack ends with needle * * @param $haystack * @param $needle * * @return bool */ static function endsWith( $haystack, $needle ) { return ( strrpos( $haystack, $needle ) === strlen( $haystack ) - strlen( $needle ) ); } /** * Checks if the string $haystack ends with needle * * @param $haystack * @param $needle * * @return bool */ static function startsWith( $haystack, $needle ) { return ( strpos( $haystack, $needle ) === 0 ); } /** * Crops the text at a useful position before/after the given amount of * characters and adds "...". * * @return string - croped text * * @param string $origText - original text * @param int $maxchars - target length (aprox.) */ static function cropTextNice( $origText, $maxchars ) { //Länge der Originaltextes feststellen $origLength = strlen( $origText ); //Wenn der Nachrichtentext weniger Zeichen enthält als die gewünschte Maximallänge, //wird der der Originaltext zurückgegeben. if ( $maxchars >= $origLength ) { return $origText; } //Abschneiden des Textes nach der gewünschten Zeichenanzahl: $text = substr( $origText, 0, $maxchars ); //letztes Zeichen der beschnittenen Zeichenkette bestimmen $lastChar = substr( $text, - 1, 1 ); $isEnd = false; // Solange das letzte Zeichen kein Lehrzeichen ist, // wird immer ein weiteres Zeichen aus dem abgeschnittenen Textteil hinzugefügt // um eine Trennung innerhalb eines Wortes zu verhindern. while ( $lastChar != ' ' ) { //Wenn das Ende des Nachrichtentextes erreicht wurde kann abgebrochen werden. if ( $maxchars == $origLength ) { $isEnd = true; break; } //weiteres Zeichen aus Originaltext anhängen $text = substr( $text, 0, $maxchars -- ); //neues letztes Zeichen bestimmen $lastChar = substr( $text, - 1, 1 ); } // Wenn der text abgeschnitten wurden, werden drei Punkte angehangen, // um zu kennzeichnen, dass die NAchricht unvollständig dargestellt wird. if ( ! $isEnd ) { $text .= '...'; } return $text; } /** * Parses an textarea input value and returns a multidimensional array that * contains all rows as sub arrays. The entries are separated via ";". The * first part becomes the array key. The following entries itselve can be * seperated again with "," wich results in a sub-sub-array * * @excample: * $text=" * channel1; value, valueb,; test1, test2, test3 \n * channel2; value1; tester1, tester2, tester3; \n * channel3; value2 * "; * echo "<pre>"; * print_r(self::getTextareaMapping($text, array('roots', 'strores'), * array('a','b', 'c'))); echo "</pre>"; * * Result: * Array( * [channel1] => Array( * [roots] => Array( * [a] => value * [b] => valueb * ) * [strores] => Array( * [a] => test1 * [b] => test2 * [c] => test3 * ) * ) * [channel2] => Array( * [roots] => value1 * [strores] => Array( * [a] => tester1 * [b] => tester2 * [c] => tester3 * ) * ) * [channel3] => Array( * [roots] => value2 * ) * ) * * @param $textareaContent - Content of an textarea inputfield with rows * separated with \n * @param $secondLevelKeys - keys for the second array level * @param $thirdLevelKeys - keys for the third array level * * @return array - textarea per line and field and subfields */ static function getTextareaMapping( $textareaContent, $secondLevelKeys = [], $thirdLevelKeys = [] ) { $map = []; $mapConfig = explode( "\n", $textareaContent ); foreach ( $mapConfig as $row ) { $row = self::trimExplode( $row, ';' ); //first part is the key if ( isset( $row[0] ) && ! empty( $row[0] ) ) { $children = []; //deal with the rest of the row for ( $i = 1; $i < count( $row ); $i ++ ) { if ( strpos( $row[ $i ], ',' ) ) { $parts = self::trimExplode( $row[ $i ], ',' ); $row[ $i ] = []; for ( $j = 0; $j < count( $parts ); $j ++ ) { if ( isset( $parts[ $j ] ) && ! empty( $parts[ $j ] ) ) { $key = $j; if ( isset( $thirdLevelKeys[ $j ] ) ) { $key = $thirdLevelKeys[ $j ]; } $row[ $i ][ $key ] = $parts[ $j ]; } } } $key = $i; if ( isset( $secondLevelKeys[ $i - 1 ] ) ) { $key = $secondLevelKeys[ $i - 1 ]; } if ( ! empty( $row[ $i ] ) ) { $children[ $key ] = $row[ $i ]; } } $map[ $row[0] ] = $children; } } return $map; } } |