| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | 
							- <?php
 
- /*
 
-  * This file is part of the Symfony package.
 
-  *
 
-  * (c) Fabien Potencier <fabien@symfony.com>
 
-  *
 
-  * For the full copyright and license information, please view the LICENSE
 
-  * file that was distributed with this source code.
 
-  */
 
- namespace Symfony\Component\Serializer\NameConverter;
 
- /**
 
-  * CamelCase to Underscore name converter.
 
-  *
 
-  * @author Kévin Dunglas <dunglas@gmail.com>
 
-  */
 
- class CamelCaseToSnakeCaseNameConverter implements NameConverterInterface
 
- {
 
-     /**
 
-      * @var array|null
 
-      */
 
-     private $attributes;
 
-     /**
 
-      * @var bool
 
-      */
 
-     private $lowerCamelCase;
 
-     /**
 
-      * @param null|array $attributes     The list of attributes to rename or null for all attributes
 
-      * @param bool       $lowerCamelCase Use lowerCamelCase style
 
-      */
 
-     public function __construct(array $attributes = null, $lowerCamelCase = true)
 
-     {
 
-         $this->attributes = $attributes;
 
-         $this->lowerCamelCase = $lowerCamelCase;
 
-     }
 
-     /**
 
-      * {@inheritdoc}
 
-      */
 
-     public function normalize($propertyName)
 
-     {
 
-         if (null === $this->attributes || in_array($propertyName, $this->attributes)) {
 
-             $lcPropertyName = lcfirst($propertyName);
 
-             $snakeCasedName = '';
 
-             $len = strlen($lcPropertyName);
 
-             for ($i = 0; $i < $len; ++$i) {
 
-                 if (ctype_upper($lcPropertyName[$i])) {
 
-                     $snakeCasedName .= '_'.strtolower($lcPropertyName[$i]);
 
-                 } else {
 
-                     $snakeCasedName .= strtolower($lcPropertyName[$i]);
 
-                 }
 
-             }
 
-             return $snakeCasedName;
 
-         }
 
-         return $propertyName;
 
-     }
 
-     /**
 
-      * {@inheritdoc}
 
-      */
 
-     public function denormalize($propertyName)
 
-     {
 
-         $camelCasedName = preg_replace_callback('/(^|_|\.)+(.)/', function ($match) {
 
-             return ('.' === $match[1] ? '_' : '').strtoupper($match[2]);
 
-         }, $propertyName);
 
-         if ($this->lowerCamelCase) {
 
-             $camelCasedName = lcfirst($camelCasedName);
 
-         }
 
-         if (null === $this->attributes || in_array($camelCasedName, $this->attributes)) {
 
-             return $camelCasedName;
 
-         }
 
-         return $propertyName;
 
-     }
 
- }
 
 
  |