Skip to content

Instantly share code, notes, and snippets.

View ryanbrainard's full-sized avatar

Ryan Brainard ryanbrainard

View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE LexicalResource SYSTEM "DTD_LMF_REV_16.dtd">
<LexicalResource dtdVersion="16">
<GlobalInformation>
<feat att="label" val="한국어기초사전 - 국립국어원 제공" />
<feat att="creationDate" val="2017/05/30 03:06:04" />
<feat att="languageCoding" val="ISO 639-3" />
</GlobalInformation>
<Lexicon>
<feat att="language" val="kor" />
@ryanbrainard
ryanbrainard / 0.demo.php
Last active November 15, 2018 02:11
PHP Class <-> JSON Serialization/Deserialization with Static & Dynamic Comparison
<?php
class Car
{
private $brand;
private $model;
private $year;
public function __construct($brand, $model, $year)
{