Skip to content

Instantly share code, notes, and snippets.

View eman1986's full-sized avatar

Ed Lomonaco eman1986

View GitHub Profile
@eman1986
eman1986 / Create.php
Created January 12, 2022 01:49
trying to show off using the new __serialize() and __unserialize() magic methods
<?php
require 'vendor/autoload.php';
use App\Model\Users;
use Symfony\Component\Uid\Uuid;
$mongo = new MongoDB\Client('mongodb://localhost:27017/');
$collection = $mongo->selectCollection('demo', 'users');