[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 declare(strict_types=1); 4 5 namespace ProxyManager\Inflector\Util; 6 7 /** 8 * Encodes parameters into a class-name safe string 9 * 10 * @author Marco Pivetta <ocramius@gmail.com> 11 * @license MIT 12 */ 13 class ParameterEncoder 14 { 15 /** 16 * Converts the given parameters into a set of characters that are safe to 17 * use in a class name 18 */ 19 public function encodeParameters(array $parameters) : string 20 { 21 return base64_encode(serialize($parameters)); 22 } 23 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |