It turns out, it’s an undocumented feature on their API, so here is everything I know about recovering your bundle data, including the script I used to rescue my own data. Continue reading
Tag Archives: zce
ZCE Preparation Pack
I’ve been running a preparation course for the Zend Certified Engineer exam for many years now. Once upon a time it was possible to buy a pack of sample exams and I used them myself when preparing for certification and also recommended them for all my students. Unfortunately this resource became unavailable and so I created a sample exam to use with my own course …. and then (after some nagging!) made it generally available.
I’ve now relaunched the pack on a new platform (for boring regulatory reasons); its new home is on Leanpub which is a fantastic platform for authors, offering markdown authoring, github integration, and many other awesome features. Perhaps more importantly, it also offers great features for readers: a 45-day money back guarantee and automatic updates to any book you have bought.
If you’re thinking of improving your skills by studying for ZCE or considering upgrading your certification to the current version (PHP 5.5), this pack will help you to prepare. It includes:
– Advice on what to expect on the day
– One exam’s worth (70) of questions in the style of the ZCE
– Answers with explanations, worked examples, and resources for further study
Help yourself get ready for ZCE: https://leanpub.com/zce
ZCE Questions Pack Unavailable
However from January the VAT rules change and I’m not in a position to comply with the new rules (they would cost a lot more than the sales make). I’m looking for alternative sales channels that would enable me to keep making the pack available but those won’t be in place immediately. If you are studying for ZCE over the Christmas break, please make sure you have the pack well in advance!
Edit: Pack temporarily unavailable now
I have other (free!) resources for you also on my ZCE page. If you have an earlier version of this pack, email me your receipt and I’ll send you a new copy – but again, you have about a week to do it!
Zend Certified PHP Developer 5.5
Sample Questions Pack
One really important step in preparing for this exam is to get an idea of what kind of questions you might be asked – in terms of the format of the questions and the topics. I have a pack of 70 questions which I use when delivering ZCE preparation courses, but I also sell it separately and it is now updated for PHP 5.5
This pack is now available from https://leanpub.com/zce
As well as questions, this includes answers with detailed explanations of how those are reached and links to further reading. There is also some advice about the format of the exam and what to expect on the day itself.
Links Bundle
The PHP Manual is fabulous, but sometimes you need a more conceptual explanation. I maintain a bundle of links to blog posts or other tutorials on the various topics involved in ZCE, which you may find helpful to dip into for your own study:
http://lornajane.net/zce-links-collection
If you find any broken links, or have any resources you think should be included, just let me know. I intend for this to be a living document that we can share.
Revision Flashcards
My advice for cramming for ZCE is always the same: you need to recap all areas of the manual but focus especially on strings and arrays, because while there will be an average number of questions on these topics, it’s common to see strings and arrays used in questions that are really about function scope, or inheritance, etc.
For my own revision, I created flashcards by taking the PHP manual and making them into double-sided PDFs that I could cut up and use (you could do this with a single-sided printer, print the odd pages first and then put the paper through again – for duplex printers beware that you need to choose “short side”).
Here are the String and Array flashcards that I used for myself (they’re not perfect, but I found them useful so if you want to download them, you can. The main omission is that I stripped < and > characters which makes for interesting string comparison documentation).
Hopefully some of these resources will help you prepare for your own professional certification – good luck :)
Talking about ZCE at PHPNW March
The details are on the Upcoming page for the event, see you on Tuesday 5th!
Become a ZCE in 2013
Edit: Pack now available from https://leanpub.com/zce
Continue reading
Inner vs Outer Joins on a Many-To-Many Relationship
Continue reading
Simple Regular Expressions by Example
As with most things, it’s pretty easy when you know how, so here’s my one-step-at-a-time approach to regex (stolen from my ZCE preparation tutorial slides). Let’s begin at the very beginning: regular expressions have delimiters, usually a slash character, and these contain a pattern that describes a string.
pattern | notes |
---|---|
/b[aeiou]t/ |
Matches “bat”, “bet”, “bit”, “bot” and “but” Also matches “cricket bat”, “bitter lemon” |
ArrayAccess vs ArrayObject
Continue reading