php

  • submit to reddit

Simple utility for copying data from MongoDB to MySql

http://my.sociopal.com/sociopaltech/post?id=simple_utility_for_copying_data_from_mongodb_to_mysql_this_is_a_simple_php_program_im_using_in_o_61755This is a...

0 replies - 41 views - 05/22/13 by Avi Kapuya in Uncategorized

Cloning in PHP

Cloning is an operation consisting in the duplication of a data structure, usually to avoid the aliasing problem  of having different code modify the same...

0 replies - 1432 views - 05/15/13 by Giorgio Sironi in Articles

Accessing APIs without taking down your own application

Ah, the world of APIs! You sprink on your application some magical powder, made from the mashed bones of curl_*() functions, and it magically integrates with...

0 replies - 1218 views - 05/08/13 by Giorgio Sironi in Articles

The Wheel: Symfony Stopwatch

It's impossible to predict performance and you need the right tooling to measure it. The Stopwatch Symfony Component is a userland object that lets you time...

0 replies - 1907 views - 05/01/13 by Giorgio Sironi in Articles

How to stub SOAP in PHP

I do not usually dismiss technologies without regarding to context, but if you have modern web applicatons in mind SOAP is simply wrong, starting from its...

0 replies - 758 views - 04/28/13 by Giorgio Sironi in Articles

PHPUnit vs. Phake cheatsheet

Benjamin Eberlei introduced me to Phake with his recent article: it is a Composer-ready PHP library that integrates easily with PHPUnit and provides an...

1 replies - 3739 views - 04/17/13 by Giorgio Sironi in Articles

Trying out PHP Refactoring Browser

Remember the times when they tried to convert you from your Unix-based PHP setup to an IDE, throwing away Vim and command line tools for Eclipse of...

0 replies - 1662 views - 04/15/13 by Giorgio Sironi in Articles

Diving into Behat

I had the occasion to try out and adopt Behat for a particular need in our projects at Onebip. Here is my recount of the experience from a PHPUnit contributor...

0 replies - 2634 views - 04/08/13 by Giorgio Sironi in Articles

Monoids in PHP

Sometimes the only way to grok a functional programming concept is reimplementing it. Monoids are a mathematical and functional structure that it's difficult...

0 replies - 2590 views - 04/03/13 by Giorgio Sironi in Articles

PHP Checkbox Quiz problem

<html><form method='post' action='process.php' id='1'><ol>   <li>     <h3>Care este altitudinea maxima a...

0 replies - 951 views - 03/20/13 by Televizor Color in Uncategorized

From Java to PHP

We are welcoming some new colleagues that come from a Java background in the Onebip team, both from the development and operations field. Here's a primer on...

0 replies - 6482 views - 03/13/13 by Giorgio Sironi in Articles

The Wheel: Symfony Console

I recognize I may be biased towards writing custom solutions due to my focus on complex domains such as transportation and payments, where new code is needed...

0 replies - 2982 views - 03/11/13 by Giorgio Sironi in Articles

How to Speed Up WordPress in 7 Easy Steps

Last month, we discussed the importance of implementing a CDN to speed up your site content. Sticking with this theme, let’s take a closer look at how...

1 replies - 1760 views - 03/07/13 by Leigh Shevchik in Articles

Contributing to Paratest

I've already written about my experiments with Paratest. Paratest is a PHPUnit wrapper that allows you to run tests written for PHPUnit in parallel, making us...

0 replies - 1476 views - 03/04/13 by Giorgio Sironi in Articles

PHP's mcrypt

This a symmetric encryption primer for PHP: you'll learn how to call the mcrypt API to encrypt and decrypt strings, using a single key in both processes.The...

0 replies - 1574 views - 02/25/13 by Giorgio Sironi in Articles