Zend Framework 2.0 Patterns Tutorial
Zend Framework 2.0 Patterns Tutorial View more presentations from Matthew Weier O’Phinney
Nokia and Windows Phone 7
While the specific details of the deal are being worked out, here’s a quick summary of what Nokia working towards: Nokia will adopt Windows Phone as its primary smartphone strategy, innovating on top of the platform in areas such as [...]
Basic Zend Controller Route
Here is the basic sample that will change the Zend Framework default controller router. Basically you need to follow the /controller/action/define-url/define-url2 and so on, let put in the actual url, example you have category and category name(category name is dynamic), [...]
Using Zend_Cache
Recently I needed to speed up the project that makes a lot of sevices call, like rss import, twitter, recapatcha etc. and some database calls. To solve this caching is the answer. Fortunately there is Zend_Cache that provides fast and [...]
PHP Comparison Operator
To test whether two variables are different, use any one of PHP’s many comparison operators. <php // define some variables $mean = 29; $median = 40; $mode = 29; // less-than operator // return true if left side is less [...]
Detecting the Data Type of a Variable
To find out what type a particular variable is,PHP offers the gettype() function, which accepts a variable or value as argument.The following example illustrates this: <?php // define variables $auth = true; $age = 27; $name = ‘Bobby’; $temp = [...]
Creating Table Prefix Using Zend Framework
Are you little confused configuring the table prefix in zf? Still I don’t why, why there is no default configuration on zend framework to set up the table prefix, if you have an idea please share with us. Ok, well [...]
Change Your WordPress Smilies With Very Pleasing Gifs Pack
You can replace the default WordPress smilies with this gifs pack and I would like to share it with you. To change the core smilies from wordpress, click the button below to download the zip file. Then overwrite – under [...]
Understanding Php Simple Data Types
Every language has different types of variables- and PHP has no shortage of choices.The language supports a wide variety of data types,including simple numeric characteristic,string and Boolean types,and more complex arrays and objects. Data Type Description Example Boolean The simplest [...]
Basic Unix “vi” Commands
Here is my commonly used commands using unix “vi” in general, it’s very useful especial when you’re creating and maintaining cron script on unix server. Command Description a Enters text input mode and appends text after the ECS Escape; leaves [...]

Comments