-
Notifications
You must be signed in to change notification settings - Fork 1
/
CcStringUtil.php
215 lines (206 loc) · 5.69 KB
/
CcStringUtil.php
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
<?php
/**
* @copyright Andreas Dirmeier (C) 2018
*
* This file is part of CcGitServer.
*
* CcGitServer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* CcGitServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with CcGitServer. If not, see <http://www.gnu.org/licenses/>.
**/
/**
* @file CcStringUtil.php
* @author Andreas Dirmeier
* @par Language: PHP
*
* Description for class CcStringUtil
*/
namespace NGitServer;
/**
* @brief Various static methods to manipulate string.
*/
class CcStringUtil
{
/**
* Check if a string starts with specified string
* @param string $haystack: String to search in
* @param string $needle: String to search for
* @param string $bCaseSensitive: if false, case of strings will be ignored
* @return boolean true if string is starting with
*/
public static function startsWith ($haystack, $needle, $bCaseSensitive = true)
{
$length = strlen($needle);
if ($length == 0)
{
return true;
}
if($bCaseSensitive)
return (substr($haystack, 0, $length) === $needle);
else
return (strcasecmp(substr($haystack, 0, $length), $needle) == 0);
}
/**
* Check if a string ends with specified string
* @param string $haystack: String to search in
* @param string $needle: String to search for
* @param string $bCaseSensitive: if false, case of strings will be ignored. default true;
* @return boolean true if string is ending with
*/
public static function endsWith ($haystack, $needle, $bCaseSensitive = true)
{
$length = strlen($needle);
if ($length == 0)
{
return true;
}
if($bCaseSensitive)
{
return (substr($haystack, - $length) === $needle);
}
else
{
return (strcasecmp(substr($haystack, - $length), $needle) == 0);
}
}
/**
* Remove all matching characters from beginning of string
* @param string $haystack: String to search in
* @param string $needle: String to search for
* @param string $bCaseSensitive: if false, case of strings will be ignored. default true;
* @return string shortened result
*/
public static function removeAllLeading($haystack, $needle, $bCaseSensitive = true)
{
while (CcStringUtil::startsWith($haystack, $needle))
{
$haystack = substr($haystack, strlen($needle));
}
return $haystack;
}
/**
* Remove all matching characters from ending of string
* @param string $haystack: String to search in
* @param string $needle: String to search for
* @param string $bCaseSensitive: if false, case of strings will be ignored. default true;
* @return string shortened result
*/
public static function removeAllEnding($haystack, $needle, $bCaseSensitive = true)
{
while (CcStringUtil::endsWith($haystack, $needle, $bCaseSensitive))
{
$haystack = substr($haystack, 0, -strlen($needle));
}
return $haystack;
}
/**
* Clean a path by removing all .. and //
* Example
* /var/www/html/subdir//../subdir2//index.php -> /var/www/html/subdir2/index.php
* @param string $sPath
* @return string Cleaned path
*/
public static function cleanPath($sPath)
{
$aPath = explode("/", $sPath);
$aNewPath = array();
$sLeading = "";
if(isset($aPath[0]) && $aPath[0]=="")
{
// Path starts with path delimiter
$sLeading = "/";
}
foreach ($aPath as $sPath)
{
switch ($sPath)
{
case "":
case ".":
// ignore
break;
case "..":
if(count($aNewPath) > 0)
{
array_pop($aNewPath);
}
break;
default:
$aNewPath[] = $sPath;
}
}
return $sLeading.implode("/", $aNewPath);
}
/**
* @brief This method generates a string like var_dump will do
* @param mixed $var: Variable to dump
* @return string in vardump format
*/
public static function getVarDump ($var)
{
ob_start();
var_dump($var);
$sData = ob_get_clean();
return $sData;
}
/**
* @brief Get Callstack printed to an variable
* @return string in vardump format
*/
public static function getCallstack()
{
ob_start();
debug_print_backtrace();
$sData = ob_get_clean();
return $sData;
}
/**
* Strip lines and trim input if required. Empty lines can also be removed.
* @param string $sInput: String to split
* @param boolean $bTrim: Trim each list item.
* @param boolean $bKeepEmpty: Remove every empty list item.
* @return array of strings
*/
public static function stripLines($sInput, $bTrim = false, $bKeepEmpty = false)
{
$aLines = explode("\n", $sInput);
if($bKeepEmpty || $bTrim)
{
$iNewList = 0;
for($i=0; $i<count($aLines); $i++)
{
if($bTrim)
{
$aLines[$i] = trim($aLines[$i]);
}
if($bKeepEmpty)
{
if($aLines[$i] != "")
{
$aLines[$iNewList] = $aLines[$i];
$iNewList++;
}
}
}
}
return $aLines;
}
/**
* Add Quotes to a string wich does not already have
* @param string $sString
* @return string
*/
public static function addQuotes($sString)
{
$sString = escapeshellarg($sString);
return $sString;
}
}