 | News Feed |
 | Jobs Feed |
Sections
|
| feed this: |  |
7PHP.com: Zend Certifications Tips & Tricks - Michelangelo van Dam
by Chris Cornutt February 04, 2013 @ 11:22:16
On 7PHP.com today there's a new interview posted, a different kind of one from their usual "community spotlight" series. In this new article they talk with Michelangelo van Dam about the Zend Certified Engineer test and any advice he can offer to those wanting to take it.
This is the 1st set of Zend Certification Tips and Advice to help anyone taking either of the two Zend Exams powered by Zend Technologies: the Zend PHP Certification Exam and/or the Zend Framework Certification Exam. The aim being to help people who want to sit for those exams and inform them what it is all about & what to expect by hearing it from (pro) PHP Guys who have already been through it, that is.
There's a long list of questions in the interview covering a wide range of things about the test everything from what its about out to some of Michelangelo's own opinions about the tests:
- Can you briefly give us an idea of what ZC is about, what it tries to achieve?
- Can you give us an idea of what need to be studied and what kind of stuffs we should expect..etc
- Parts of the modules that you think is more complex and one should pay special attention to?
- What TWO questions can you remember that you can share with us
- Do you recommend PHP guys to get certified?
Check out the answers to these and more questions in the full interview.
voice your opinion now!
zend certification zce framework zfce interview michaelangelovandam opinion
PHPMaster.com: PHP and the i, Part 2
by Chris Cornutt January 24, 2013 @ 12:57:03
On PHPMaster.com today they've posted the second part of their "PHP and the i" series (here's part one). In this new article, he looks a bit closer at what kind of knowledge is needed to develop PHP on the IBM i.
In this somewhat risqué episode, we'll look at just what you need to be able to do development work on the i. Many people in the i world will that PHP is native to the i, but I don't think that's really true. To me, native means that it just runs, no problems or questions asked, nothing special needs to be done, it just sort of happens like when you see someone across a crowded room and know she/he is "the one". That's not the way it works with PHP and the i.
He starts off by talking about Zend and its contribution to the IBM i's abilities to run PHP through RPG thanks to a "bridge" they created. There are other options, but as he points out, they're not as well developed (or supported) as Zend's offering (being Zend Server, Zend Studio and Zend Framework).
He then talks about the details of creating and running scripts - where to put them, what kind of RPG knowledge you'll need to implement them, and which parts of the typical MVC stack work best where.
voice your opinion now!
ibmi systemi as400 development zend rpg mvc
Qafoo.com: Black Magic with Regular Expresions
by Chris Cornutt November 29, 2012 @ 10:21:47
If you've been mystified by regular expressions in the past and want to learn more about their effective use, you should check out these two webcasts from Qafoo - "Black Magic with Regular Expressions" and "Understanding Regular Expressions".
We are happy to announce the availability of my second Regular Expression webinar recording. It was a fun event, which I used to explain all the attendees a little bit more about the PCRE Regular Expression engine available in PHP and some other languages. I am covering some slightly advanced topics, like subpattern options, unicode and backtracking aka. greediness and performance.
You can watch these two recordings over on the Zend.com site:
voice your opinion now!
blackmagic regularexpressions regex webcast recording zend
Lee Davis' Blog: The enum conundrum
by Chris Cornutt July 06, 2012 @ 11:56:52
In a new post to his blog Lee Davis describes the enum conundrum - what's the right solution for effectively using ENUM-type fields in your data?
So a user signs up and I want to store a status that reflects their account, or at least an identifier representing that status. Their account could be active, disabled (temporarily), pending approval or maybe deleted. Should I use an enum? I've heard they're evil. Maybe having a reference table with statuses would be better? But now I have to manage a separate table just for that one snippet of data, is that overkill? Could I maybe use that status table for other entities? Or, could I instead just use an integer and reference it on the code level? What is the right solution?
He presents three of the most common situations he's seen for people using enums in the application:
- "I used enums all over the place" (maintenance between code and DB values)
- "use a reference table"
- "I could use a class constant to represent the enum" (enforced in the app)
Of the three, he suggests the third as the option with the most advantages. Not only does it make it simpler to get the allowed values for the field, but you're also more flexible in the kinds of validation you can do on the values.
voice your opinion now!
enum conundrum reference table constant maintenance
Zend: Results from "Zend Developer Pulse" 2012 Survey Posted
by Chris Cornutt June 27, 2012 @ 11:13:25
Zend has published the results of their "Developer Pulse" survey for 2012 - the product of a survey of over three thousand developers across the PHP community.
The summer 2012 edition of the Zend Developer Pulse™ survey shows that PHP is gaining prominence as a cloud application development language of choice. The combination of speed and ease of use enables developers to build and deploy PHP-based cloud applications quickly: more than half the developers surveyed indicated that the apps they are developing today are destined to be deployed in cloud environments.
You can view the full results of the report in this PDF which touches on topics like:
- Developing in the cloud
- Working with APIs
- Versions of PHP developers are using
- Tools & best practices
voice your opinion now!
zend results survey developer
Gonzalo Ayuso's Blog: Building a simple SQL wrapper with PHP. Part 2.
by Chris Cornutt June 18, 2012 @ 10:05:50
Gonzalo Ayuso has followed up his previous post about creating a simple SQL wrapper with PDO in PHP with this new post, a "part two" looking at improving it a bit with a new class to represent the tables.
In one of our last post we built a simple SQL wrapper with PHP. Now we are going to improve it a little bit. We area going to use a class Table instead of the table name. Why? Simple. We want to create triggers. OK we can create triggers directly in the database but sometimes our triggers need to perform operations outside the database, such as call a REST webservice, filesystem's logs or things like that.
He includes the updated code with the new "Table" class with methods that let you set up pre- and post-action hooks on each of the types (insert, delete, update) along with the rest of the library, there ready for the copy & pasting.
voice your opinion now!
sql wrapper tutorial table hook object
|
Community Events
Don't see your event here? Let us know!
|