|
|
|
|
|
Login to share your opinion Practical PHP Refactoring: Convert Procedural Design to ObjectsEven in languages where there are no constructs but classes, there is no constraint that can force a programmer into writing object-oriented code. In many… read more The __toString() Method – Objects as StringsWe started the study of PHP magic methods by learning about __get() magic method. All the names of magic methods are reserved and cannot be… read more How to Create Your Own Super Simple WordPress PluginsThat may not sound like a problem, but it is. Because these files are tied to your theme, if you ever want to use them… read more The MicroPHP Follow-up FAQMy previous post, The MicroPHP Manifesto, resulted in much excitement. In between fits of rage and crying, I found some time to answer folks questions,… read more HTML5 Web Workers: Classic Message Passing ConcurrencyMost concurrency frameworks I write about on this blog consist of numerous layers of abstraction. Consider the Task Parallel Library, for instance: it’s a wrapper… read more File Loking in PHPWhile writing to files that are possibly being read by other scripts at the same time, you will run into problems at some point specifically… read more Critical PHP Remote Vuln Introduced in Hashtable DOS PatchToday, Stefan Esser (@i0n1c) reported a critical remotely exploitable vulnerability in PHP 5.3.9 (update assigned CVE-2012-0830). The funny thing is that this vulnerability was introduced… read more What is JComboJCombo is an Open Source JavaScript + PHP hybrid framework that allows you to easily build powerful, dynamic, data-driven web applications. JCombo doesn't require special… read more PHP : var_dump() functionThe var_dump() function is used to displays structured information (type and value) about one or more variables. read more Get Session Status in PHP 5.4Here status means, We have called the session_start() function but we wants to make sure that really session is started or not. So this status… read more Practical PHP Refactoring: Collapse HierarchyIn the scenario of today, a subclass and superclass are not very different: the evolution of the code has brought them to this situation. Behavior… read more Adsense plugins for WordPressIf you try to monetize your blog with Google Adsense you might have noticed that this is not an easy job. Blog reader are very… read more Practical PHP Refactoring: Extract SuperclassIn the scenario of today, there are two or more unrelated classes with similar members, like common methods or fields. While these classes may be… read more Forging Forgecraft: Integrating CSS3 Transitions with JavascriptWith Forgecraft, and any game really, there are usually quite a few animations running concurrently. I found these moments to be choppy, unresponsive and frustrating… read more PHP mysqlnd query cache plugin quickstart is online!New in the PHP manual: a quickstart for the mysqlnd query cache plugin. PECL/mysqlnd_qc, the mysqlnd query cache plugin, is transparent and ease to use.… read more PHP 5.3.9 RPMs Available for TestingI've updated my relatively "vanilla" PHP 5 RPMs to 5.3.9 on oss.oracle.com/projects/php. They are built for Oracle Linux 5.7 (and RHEL 5.7). I've included the… read more Compiling PHP with MSSQL Server's Native ODBC Driver for Linux as a PDO DriverLast month, MS announced the preview release of SQL Server ODBC Driver for Linux, a 64-bit binary driver for Red Hat Enterprise Linux 5. This is good news for companies… read more Learning PHP – Step 3 BasicsWhat about types? If you know python, ruby or the “var x = 0;” construction from C# you know how PHP works. It converts the… read more Getting comfy with PhpStorm - one of the best IDEs so far!Beside the frequently asked question “Which Framework is best?” this one is the top in category – “Which one is the best IDE”. People asks… read more PHP Session Save PathThis is the very useful function when you want to get or set your session save path. This function takes only one parameter which is… read more |