News Feed
Jobs Feed
Sections



Recent Jobs

News Archive
feed this:

SkyTechGeek.com:
10 Exceptional Tools For Website Testing
August 23, 2011 @ 13:25:22

Sometimes a little (external) testing of your website is in order and Gagan Chhatwal has posted his list of ten tools you can use to check everything from how much load the site can take to what can be done to optimize the load time.

When maintaining or running a website , Webmasters need to keep in mind that one of the pertinent issues they will need to focus on is :Website Testing, which is not only vital for the website itself but for the user as well and one should not overlook its importance. [We have] collected some vital and free website testing tools which will help Webmasters in testing their sites thus saving users to conduct time consuming needless searches in finding the best resources pertaining to Web related tools and info.

Among the tools on the list are services like:

Most of these resources are free services, if not then they have a trial where you can see if it's a good fit.

0 comments voice your opinion now!
testing external service load validate speed monitor



Juozas Kaziukenas' Blog:
How to use external libraries in PHP?
May 23, 2009 @ 20:26:09

As a part of his work for the WinPHP Challenge Juozas Kaziukenas looks at some of the external library types that you can use with your (Windows) PHP applications.

External libraries are useful for performance demanding tasks where PHP is simply too slow. Also PHP can work as front-end system for various back-end systems (where server doesn't provide any PHP supported communication types). I have written some posts about using .Net libraries in PHP so far, but there are some other choices available too.

He looks at the three types of library choices - PHP extensions, exec call. For what he wants to do, though, the COM objects are the best fit for the job.

0 comments voice your opinion now!
external extension pecl com


CSS-Tricks.com:
Using Weather Data to Change Your Website's Appearance through PHP and CSS
February 18, 2009 @ 12:08:03

On the CSS-Tricks.com site today there's a quick tutorial on changing up the look and feel of your site based on an external source. More specifically, they give the example of updating the graphics of your site depending on the weather in your area via PHP and CSS.

Using a little magic and trickery (read: PHP and CSS), we can change the appearance of a website automatically based on the weather outside, in real time! In the example site we have created, the header graphic will change to one of four different styles based on Sunny, Rain, Snow, and Cloudy.

Their example makes a request to the Yahoo! weather data for a location and brings it in to PHP where the XML is parsed (via a regular expression) and the current conditions are parsed out. This condition is then passed out into the page as the class type on the header and, based on the CSS already defined, the correct image is pulled in as the background.

0 comments voice your opinion now!
weather data yahoo change header css graphic external source


PHPBuilder.com:
PHP Developer Resources
November 21, 2008 @ 08:07:39

PHPBuilder.com has posted a list of resources that they offer to help both beginning and experienced PHP developers to further their knowledge:

PHP is one of the most popular scripting languages used to develop applications on the web today. As a result, internet.com has a multitude of PHP resources throughout our network of websites. Here are some of our best PHP resources, along with some featured tutorials and out-of-network resources that you may not know about.

The grouping of links also include external resources like the main PHP site and Zend's website.

0 comments voice your opinion now!
developer resource list link internal external zend


Stubbles Blog:
State of annotations in the PHP world
November 10, 2008 @ 13:32:59

In this new post to the Stubbles blog Frank Kleine looks at the current state of annotations in the PHP language and applications.

Annotations are a really helpful feature in present-day development. An annotation is a special form of syntactic metadata that can be added to source code elements such as classes, methods, properties and parameters. They do not affect the program semantic directly, but can be used by tools and libraries to handle such annotated code in a certain way.

He notes that, as of right now, PHP doesn't naively support anything like this but that there are additional libraries that can be used to augment the standard PHP performance and use them (like a feature in PHPUnit with @assert and @test). He also go through several of the other libraries that make it possible including Addendum, FLOW3 and the XP-Framework.

0 comments voice your opinion now!
state annotation language library external compare


Dokeos Blog:
mbstring vs iconv
April 24, 2008 @ 11:18:08

In this post on the Dokeos blog, there's a comparison of the mbstring function and the iconv library as it pertains to their use on multi-byte strings.

I was wondering today why use mbstring rather than iconv in Dokeos, and honestly I didn't remember exactly why I had chosen mbstring in the past, but finding information about the *differences* between the two. [...] Searching a bit more, I found a PPT presentation from Carlos Hoyos on Google.

Essentially, it boils down to how the library is integrated - mbstring is bundled and iconv is pulled from an external source. So, if you're looking for maximum portability, he recommends mbstring.

0 comments voice your opinion now!
mbstring iconv multibyte character string compare internal external


Stubbles Blog:
Do not trust the reflection API
January 28, 2008 @ 13:07:00

On the Stubbles blog, Frank Kleine offers some advice to developers looking to use the Reflection API - "don't trust it".

If you try to get informations about parameters from methods of internal classes - forget that. Examining several internal classes my key findings are: either there is no information about parameters available and the reflection API says the method does not have any parameters, or the information about the parameter is wrong.

He includes code examples along side the output from the script to illustrate his point.

0 comments voice your opinion now!
reflection api class external internal pdo pdostatement


Internet Super Hero Blog:
Debugging ext/mysqli and mysqlnd
September 03, 2007 @ 08:56:00

With all of the good news they've posted about the mysqlnd driver, the developers behind the Internet Super Hero blog know that there will be bugs that come up in the driver. So, they've addressed the right way to find and deal with these issues in a new blog entry.

he bad news: mysqlnd might have bugs. How to report and debug these bugs - using mysqli_debug() - is subject of this posting.

They step you through the process for finding out what's causing the problems (internal versus external debugging) and how to make client traces with the mysqi extension to make it even easier for the developers to track down the problem. They also suggest a few things to send along with your bug report - like the PHP code calling it or the SQL you're using to select/update/insert/delete the data from your database.

0 comments voice your opinion now!
debugging mysqlnd mysqli external internal client trace debugging mysqlnd mysqli external internal client trace


DevGuide.net:
Dynamic Bitmap Graphics with PHP and GD
January 22, 2007 @ 16:46:00

Jacek Artymiak published the second edition of his "Dynamic Bitmap Graphics with PHP and GD" tutorial over on DevGuide.net today focusing specifically on creating bitmaps on the fly.

The 39 page guide ($15 USD from Lulu.com) provides a wealth of knowledge about working with graphics in PHP including a detailed look at some of the more advanced functionality of GD. The book covers your first steps with GD and graphics, working with primitives, creating an image based on external data, and embedding them into an XHTML/HTML page of your choosing.

The page for the book on DevGuide.net itself even provides a great list of resources for those looking to get into graphics with PHP - with links to everything from the basic software (webservers, PHP, etc) out to the libraries you'll need and some other tutorials to help you even after you've worked through the book.

0 comments voice your opinion now!
dynamic bitmap gd graphics external data inroduction links dynamic bitmap gd graphics external data inroduction links


Elizabeth Smith's Blog:
Fun with compiling - Gtk+, PHP-Gtk2, and MSVC
December 19, 2006 @ 14:34:00

Elizabeth Smith has a new post to her blog today covering some of the fun she's been having with compiling things like Gtk+ and PHP-Gtk2.

So I've been using microsoft visual studio (actually it's Visual C++ Express, but uses the same stuff behind the scenes) to work on getting things compiled on windows. PHP-Gtk2 allows for some nifty extensions, well at least on linux. So I've been working to get versions of libglade, scintilla, gtksourceview and mozembed working on windows. It's a long, slow process. Here's the deal so far.

She talks about her current situation (what's compiling and what's not) and the software that she's trying to get up and running. She also mentions a problem she's been having with an error message talking about "unresolved external symbols" she'll need to track down (or get some help on - anyone out there seen it?)

0 comments voice your opinion now!
compiling phpgtk gtk msvc situation unresolved external symbol compiling phpgtk gtk msvc situation unresolved external symbol



Community Events





Don't see your event here?
Let us know!


development framework api conference package application custom opinion symfony2 community unittest introduction manifesto release language series interview phpunit test podcast

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