PHP Classes

File: vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php   Download  
File: vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 260 bytes
 

Contents

Class file image Download
<?php

namespace DeepCopy;

/**
 * Deep copies the given value.
 *
 * @param mixed $value
 * @param bool $useCloneMethod
 *
 * @return mixed
 */
function deep_copy($value, $useCloneMethod = false)
{
    return (new
DeepCopy($useCloneMethod))->copy($value);
}