3:45pm PT, Wednesday Jul 23

Category

Archive for the '' Category

DevShed: Inserting Comments and Accessing Nodes with the DOM XML Extension in PHP 5

DevShed continues their series looking at using the DOM extension in PHP5 to work with XML in your application. They’ve already looked at adding attributes and creating CDATA information in a new DOM document. This time they build on that and also include new methods - appending comment nodes and getting at XML nodes by […]

Popularity: unranked [?]

Accessing Nike+ data with PHP - ThinkPHP /dev/blog - PHP

Nike+ is a feature for the iPod nano which allows to measure time, distance and speed of runnings with a small sensor in running shoes that sends data to a transmitter on the iPod. Those data are sent to a users Nike+ account by iTunes whenever the iPod is synchronized. On the Nike+ website there […]

Popularity: unranked [?]

ThinkPHP Blog: Accessing Nike+ data with PHP

On the ThinkPHP blog today, Stephanie Ehrling has posted about a method for PHP to take in the output of the Nike+ equipment and put it into a usable form.

There is no official API that allows you to use the raw data. Nevertheless the data are sent to the Flash via XML so there is […]

Popularity: unranked [?]

Accessing object properties by reference - Harrie Verveer

PHP is a loosely typed language. Most of the time this is very useful because you as a programmer don’t have to worry about typecasting: it’s done for you. However, on some occasions this can cause some unexpected trouble. These issues can be hard to track down because the error usually […]

Popularity: unranked [?]

Ibuildings Blog: Accessing object properties by reference

On the Ibuildings blog today, Harrie Verveer has posted about an interesting quirk he found when working with objects and references:

PHP is a loosely typed language. Most of the time this is very useful because you as a programmer don’t have to worry about typecasting: it’s done for you. However, on some occasions this can […]

Popularity: unranked [?]

DevShed: Accessing Attributes and Cloning Nodes with the DOM XML Extension in PHP 5

DevShed continues their series about working with XML in PHP’s DOM extension with this new tutorial posted today showing how to get at attributes for tags and cloning nodes from others.

You’ve probably realized that the DOM XML library can be pretty useful when working with web documents. However, this extension includes some other methods, which […]

Popularity: unranked [?]