This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Car | |
{ | |
private $brand; | |
private $model; | |
private $year; | |
public function __construct($brand, $model, $year) | |
{ |
OlderNewer