28 May, 2010
I have som rather large and time consuming queries running in the Statistics screen of an NOC (Network Operations Center) Flex/Flash Builder 4 application i’we been tinkering with, to prevent the database server to be boggen down by multiple queries fired by this app in multiple places I had to implement caching.
And to do this […]
Posted in AIR, Development, Featured, Flash, Flex, PHP
26 May, 2010
Giorgio Sironi writes an interesting TDD story; I am halfway through reading Growing object-oriented software, guided by tests, a book that teaches Test-Driven Development in a Java environment. A review will come soon, since the process described in this work is really language-agnostic and interesting also for php developers.
However, the book’s authors introduce a very […]
Tags: phpUnit, TDD, Zend Framework, Zend_Test
Posted in Development, Unit Testing, Zend Framework
24 May, 2010
Benjamin Eberlei writes; Hello everyone,
I completed a first version of Zend + Doctrine 1 integration today and want to share it with all you. Since currently the status on a 1.11 release is unclear I contacted all the contributors to various Doctrine-related components and combined them into a single release and wrote some documentation on […]
Tags: Bootstrap, Doctrine, Models, Tutorial, Zend Framework, Zend_Form, Zend_Tool
Posted in Development, Doctrine, Zend Framework
20 May, 2010
Writing maintainable code is an art that takes effort and practice to master.
Part of that art is learning what tools and strategies will assist you in that effort. In this tutorial, we will cover a variety of practices and tools that can make your life, and the lives of your team members, […]
Tags: phpUnit, Zend Framework
Posted in Development, PHP, SVN, Talks, Unit Testing, Zend Framework
19 May, 2010
Having done a little bit of work with Flash over the past several weeks there are a couple of things I’ve discovered as I’ve worked through some practical examples. There’s only really one thing signficant, but a couple of things that you need to be aware of when doing Flash remoting with Zend Framework.
via […]
Posted in AIR, Development, Featured, Flash, Flex, Zend Framework
14 May, 2010
Aleksey V. Zapparov posts a very nice solution to a very common question when dealing with Bootstrap resources;
Hello,
You can either register precious resources in registry, e.g.:
protected function _initMyResource()
{
$res = ‘foobar’;
Zend_Registry::set(‘myResource’, $res);
return $res;
}
Or you can register the whole bootstrap, so you can place in […]
Tags: Bootstrap, Zend Framework, Zend_Registry
Posted in Development, Zend Framework
10 May, 2010
Rémi Goyard wrote a nice little class to access your Google Reader Feeds take a peek below, he says;
I finally wrote my own class to retreive data from my Google reader Account (stared items, shared items, …)
The class needs some more work.
Regards
Rémi
< ?php
/**
* Class to retreive your rss feeds used in Google Reader
* thanks […]
Tags: Zend Framework, Zend_GData
Posted in Classes, Development, Zend Framework
10 May, 2010
Bill Karwin gives some insight into some work arounds when creating functions, triggers and procedures using Zend Framework;
MySQL does support preparing some DDL statements, even in older versions. See http://dev.mysql.com/doc/refman/5.1/en/sql-syntax-prepared-statements.html
for lists of what statements can be prepared.
However, some DDL statements are still not supported as prepared statements, for example CREATE FUNCTION, CREATE […]
Tags: MySQL, Zend Framework, Zend_Db
Posted in Development, MySQL, Zend Framework