When installing the extension using the PECL tool, the following error occurs:# pecl install channel://pecl.php.net/xhprof-0.9.1downloading xhprof-0.9.1.tgz …Starting to download xhprof-0.9.1.tgz (925,239 bytes)……………..done: 925,239 bytes11 source files, buildingrunning: phpizeCannot find config.m4.Make sure that you run ‘/usr/local/bin/phpize’ in the top level source directory of the moduleERROR: `phpize’ failed
Category Archives: Programming
i18n gettext in PHP
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.
THE HTML5 TEST
ABOUT THE TEST The HTML5 test score is an indication of how well your browser supports the upcoming HTML5 standard and related specifications. Even though the specification isn’t finalized yet, all major browser manufacturers are making sure their browser is ready for the future. Find out which parts of HTML5 are already supported by your …
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.