php-kilo/README.md

13 lines
671 B
Markdown
Raw Normal View History

2019-10-15 14:57:58 -04:00
# PHP Kilo
A reimplementation of the [Kilo](https://viewsourcecode.org/snaptoken/kilo/index.html) tutorial in PHP. Requires PHP 7.4,
due to requiring the `FFI` extension.
## Implementation notes:
* The `editor` prefix has been removed from all the relevant functions, instead they are methods on the `Editor` class.
* Enums are faked with class constants
2019-11-13 16:26:19 -05:00
* Composer is used for autoloading
2019-10-22 16:16:28 -04:00
* Properties that must be manually updated in the C version (like counts/string length) are implemented with magic methods,
so they are essentially calculated on read.
2019-10-15 14:57:58 -04:00
* Generally, if a function exists in PHP, with the same name as the C function, the PHP version will be used.