News Feed
Sections
News Archive


Community Events
php|tek 2008 PHP Conference



feed this:

Symfony Blog:
Yahoo! Answers powered by symfony
0 comments :: posted Thursday May 08, 2008 @ 08:48:15
voice your opinion now!

Mirroring the move they made previously to move the Yahoo! Bookmarks service over to Symfony, the company has updating their Yahoo! Answers service to be the same. According to the symfony blog today:

Yahoo! used symfony to redevelop another project. This time symfony was used as part of the foundation for Yahoo! Answers. Yahoo! Answers is the largest collection of human knowledge on the Web with more than 135 million users and 515 million answers worldwide. Yahoo! Answers is the 2nd ranked education & reference site on the web and is available in 26 markets and 12 languages.

The post shares some of the thoughts behind the move including their philosophy, the design of the project and a link to a presentation given on the update.

tagged with: yahoo answers symfony framework update presentation


Community News:
New Yahoo! Pipes PHP serialized output renderer
0 comments :: posted Monday April 07, 2008 @ 12:05:17
voice your opinion now!

As mentioned on the Zend Developer Zone and by John Herren, Yahoo! has added a new feature to its Pipes functionality - serialized PHP results.

Until now JSON output has been the only way to obtain all the data flowing through a Pipe. Starting today we've added a second way of getting all the data - serialized PHP Pipe output. [...] It's then up to you on how you want to display or use the Pipe data. The possibilities are endless.

If you haven't messed with Yahoo's Pipes system, you owe to it to yourself to at least go and play with it for a little bit.

tagged with: yahoo pipes serialized output code addition johnherren

DeveloperTutorials.com:
PHP Site Search Made Easy
0 comments :: posted Monday March 31, 2008 @ 12:35:52
voice your opinion now!

On the Developer Tutorials site today, Akash Mehta has posted his look at having search functionality on your website.

Today's websites have a lot of content. [...] Needless to say, effectively searching all that data can be a real challenge, and chances are at the end of the day you'll still be stuck with a slow and ineffective search system. [...] Implementing effective search doesn't have to be hard. In this tutorial, I'll show you how to build a basic site-specific web search in just five lines of code, using the Yahoo! APIs.

He includes a (very) brief look at the search API Yahoo! offers followed by examples of queries and then on to the real deal, a search system that takes in a user query and asks the Yahoo! API for results matching it. The results are outputted below the box.

tagged with: search engine yahoo api simple tutorial

Hasin Hayder's Blog:
WorldTimeEngine - How about making your own in PHP?
0 comments :: posted Monday March 10, 2008 @ 11:17:00
voice your opinion now!

Hasin Hayder has posted an example of a "world time search" he's worked up that uses the geonames.org and Yahoo! developer APIs to pin down the time at any given location.

I recently came by this site WorldTimeEngine where users can search the local time of any place using the name, street address or just latitude and longitude. Since that time I was thinking how easily you can make your own. As long there are some good people over there (For Geocoding API) - its a not a big deal, you know?

His script pulls the location of the place (latitude/longitude) from the Yahoo! geocoding API and passes that back into the geonames web service to get the local time. The result is an array with the lat/long, address you submitted and the time output in a standard string.

tagged with: world time engine example yahoo api webservice geonames

DevShed:
Building a Complete Web Searching Class with Yahoo Web Services and PHP 5
0 comments :: posted Wednesday February 20, 2008 @ 12:58:00
voice your opinion now!

DevShed finishes up their series looking at making a search engine with the Yahoo! web services in PHP5 in this last look at using the functionality they've created so far to make a more improved search.

This last installment of the series will be entirely focused on demonstrating how Inheritance can be used in a helpful way to build a set of child classes that will come in handy for consuming a specific Yahoo! Search Service.

They show how to use their current image search functionality and, with a few modifications, make a base class that can be used to support ech of the other search types (web, image, video) with common functionality and settings.

tagged with: php5 tutorial webservice yahoo search video image

DevShed:
Using Yahoo Web Services to Perform Searches with an Object-Oriented Approach
0 comments :: posted Tuesday February 12, 2008 @ 13:23:41
voice your opinion now!

To finish up their series looking at using the Yahoo! web service search functionality in a PHP5 application, DevShed has posted this look at integrating the search functionality into a preexisting application.

In simple terms, my plan will consist of creating some compact and modular PHP 5 classes, which will define a few basic methods for working with the different web services offered by Yahoo!.

They take the code they created from before (earlier parts of the series) and format it to fit into its own standalone class that can be included anywhere in an application. They create the class so it can search not only the normal results but it can also pull in the data from the video search Yahoo! offers as well.

tagged with: yahoo search video object oriented oop class integrate

DevShed:
Defining Some Custom PHP Functions with Yahoo Web Services
0 comments :: posted Tuesday February 05, 2008 @ 11:18:00
voice your opinion now!

DevShed continues their series looking at connecting a PHP5 script to the powerful Yahoo! search backend with part four of the series today. This part focuses on reworking some of the previous examples to make them more modular using custom defined functions.

Logically, these examples can be really useful for learning the basic concepts surrounding the use of these search services, but undoubtedly, it's necessary to modify and improve their source code to make it more compact and completely reusable.

They start the overhaul with the web search (complete with example results) then push on to the video and image searches and work them over the same way.

tagged with: webservice yahoo tutorial php5 search video image function

Tony Bibbs' Blog:
Microsoft and PHP
0 comments :: posted Monday February 04, 2008 @ 11:16:00
voice your opinion now!

Tony Bibbs, in the wake of last week's surprise from Microsoft to Yahoo, has posted a few of his thoughts on the matter.

I woke up this morning to the news of a $44 billion buy-out offer from Microsoft for Yahoo!. This is being covered from all angles in various tech sites like Slashdot but I think the one angle I haven't seen yet is what does this mean for PHP?

He mentions the work that Microsoft and Zend have done to push PHP support on the OS (check out this email too) and he wonders what the final impact of it all could mean for the language - will things change drastically if Microsoft becomes a major player in the PHP world or would they stay behind the scenes and give the community the support it might need.

tagged with: microsoft yahoo buyout zend fastcgi community impact

Wolfgang Drews' Blog:
Using YUI autocomplete with Zend Framework
0 comments :: posted Monday February 04, 2008 @ 09:33:00
voice your opinion now!

Wolfgang Drews (of DynamicWebPages) has posted a mini-tutorial on his personal blog showing how to integrate the popular Zend Framework with the YUI Javascript libraries from Yahoo! to create an autocomplete field in your app.

Maybe this short snippet helps someone out there when using YUI autocomplete feature together with the Zend Framework or any other Framework, that creates URLs like http://domain.tld/controller/action/param/value.

He modifies the Yahoo library to change a few of the defaults to make it more Zend Framework-friendly: changing the default query format and updating the "append parameters" concatenation to replace the ampersand with a slash.

tagged with: autocomplete yui yahoo library javascript zendframework

DevShed:
Implementing Yahoo Image Search Web Service with PHP 5
0 comments :: posted Tuesday January 29, 2008 @ 13:05:08
voice your opinion now!

DevShed has posted the third part of their series looking at accessing the Yahoo! web services via PHP5 scripts. This time it's a focus on using the image search capabilities.

In this third chapter of the series, I'm going to continue exploring in detail other helpful web services offered by Yahoo!, such as those focusing on searching images and videos. Also, I will demonstrate how they can be queried directly from a basic PHP 5 application and process the corresponding search results by utilizing the same group of array handling functions that you saw in the previous article of the series.

Just like in previous articles of the series, they make a simple class that connect to the Yahoo! web services and request search details back about their queries (like "Madonna").

tagged with: php5 implement yahoo webservice image search


job mysql releases PEAR pecl package code release developer conference database book ajax cakephp zend application framework zendframework security PHP5

All content copyright, 2008 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework