Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 518 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 518 Bytes

properties

A PHP library to parse .properties configuration files, often used for Minecraft servers.

Install

php composer.phar require sekjun9878/properties ~1.0.0

Usage

use sekjun9878\Properties\Properties;

$data = file_get_contents(filename);
$array = Properties::parse($data);

$string = Properties::dump($array);

License

Copyright (c) 2015 Michael Yoo michael@yoo.id.au
Released under the MIT license; see LICENSE
https://github.com/sekjun9878/properties