Update src/Util/Strings.php
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
		
					parent
					
						
							
								ce56cabd9f
							
						
					
				
			
			
				commit
				
					
						765b50bde8
					
				
			
		
					 1 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -525,16 +525,16 @@ class Strings
 | 
			
		|||
	 */
 | 
			
		||||
	public static function getBytesFromShorthand(string $shorthand): int
 | 
			
		||||
	{
 | 
			
		||||
		$shorthand  = trim($shorthand);
 | 
			
		||||
		$shorthand = trim($shorthand);
 | 
			
		||||
 | 
			
		||||
		if (is_numeric($shorthand))
 | 
			
		||||
		if (is_numeric($shorthand)) {
 | 
			
		||||
			return $shorthand;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		$last = strtolower($shorthand[strlen($shorthand)-1]);
 | 
			
		||||
		$shorthand  = substr($shorthand, 0, -1); // necessary since PHP 7.1; otherwise optional
 | 
			
		||||
		$last      = strtolower($shorthand[strlen($shorthand)-1]);
 | 
			
		||||
		$shorthand = substr($shorthand, 0, -1);
 | 
			
		||||
 | 
			
		||||
		switch($last) {
 | 
			
		||||
			// The 'G' modifier is available since PHP 5.1.0
 | 
			
		||||
			case 'g':
 | 
			
		||||
				$shorthand *= 1024;
 | 
			
		||||
			case 'm':
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue