gettext is the GNU internationalization and localization (i18n) library. It is commonly used for writing multilingual programs. It has an implementation in a lot of different languages and it’s also commonly used in PHP applications.
Category Archives: PHP
stdClass in PHP
stdClass is php’s generic empty class, kind of like Object in Java or object in Python (Edit: but not actually
How to enable memcache in WAMP
A few things about memcache: Memcache is a daemon, meaning it runs as a separate service on your machine. Just like MySQL runs as a separate service. In fact, to use memcache in PHP you have to connect to it, just like MySQL.
Version Control with Git
Have you ever worked on a project that was so unwieldy, you were scared to update a file or add a feature? Maybe the problem was that you weren’t using a version control system. In today’s tutorial, we’ll learn the basics of what might possibly be the best VCS in the world: Git.
How to read comment blocks in PHP?
Check out Tokenizer.
Installing APC Alternative PHP Cache
Integrating APC (Alternative PHP Cache) Into PHP5 (Debian Etch & Apache2) This guide explains how to integrate APC (Alternative PHP Cache) into PHP5 on a Debian Etch system (with Apache2). APC is a free and open PHP opcode cacher for caching and optimizing PHP intermediate code. It’s similar to other PHP opcode cachers, such as eAccelerator and XCache.