PHP Debugging with Zend Studio PHP / Getting Started
We will explore how to use the latest update of Zend Studio for debugging PHP scripts. But first, we will get an overview of the product, its various editions, the system requirements for running.
Setting Up Zend Optimizer Tutorial PHP / Miscellaneous
The Zend Optimizer is a free application that runs the files encoded by the Zend Encoder and Zend SafeGuard Suite, while enhancing the running speed of PHP applications. Many scripts require that you have Zend Optimizer installed so you are able to run them on your server while decrypting and running them on the fly while increasing runtime performance.
PHP Debugging with Class PHP / Debugging and Error Handling
This article talks about a technique for debugging CGI programs written with the PHP scripting language. Topics include: Creating the Debug Class, Testing the Debug Class, Using the Debug Class, Production Debugging, and more.
PHP Debugging PHP / Debugging and Error Handling
Debugging your code is a quite refined art that takes some time to snap into, but once you know where to look and what to look for, life instantly starts looking much much rosier. This tutorial is aimed at giving you the upper hand in debugging, so that you can spend more time with the juicy bits of coding.
Introduction to Debugging and Error Checking PHP / Debugging and Error Handling
Debugging essentially means to track down an error in your code. Found a "bug" in your code? Then you need to "de-bug" it. This article will introduce you to some basic concepts such as error checking and built-in functions like var_dump() that will aid you in tracking down errors in your PHP applications.
PHP Debugging PHP / Debugging and Error Handling
Ok, so quite a lot of newbies to PHP commonly get syntax errors. I'm just going to post a few commonly known errors, failed remedies and the proper resorts to these errors.
Debugging PHP: Did You Remember to PHP / Debugging and Error Handling
So you've finally managed to install PHP. Anxious to use your new tool, you find the print function in the manual, write your own hello world, load the page and the dreaded "Parse error: parse error in /usr/local/apache/htdocs/test.php on line 2" error pops up in front of you. You know the scenario, read on to learn the fixes....
PHP SOAP Extension PHP / XML Web Services
This tutorial describes:
* What is PHP SOAP Extension?
* My first example with SOAP Extension.
* SOAP Extension functions for client applications.
* How to dump detailed information for debugging.
* A WSDL document example.
* How use SOAP Extension in non-WSDL mode.
A HOWTO on Optimizing PHP PHP / General Development
PHP is a very fast programming language, but there is more to optimizing PHP than just speed of code execution. In this chapter, we explain why optimizing PHP involves many factors which are not code related, and why tuning PHP requires an understanding of how PHP performs in relation to all the other subsystems on your server, and then identifying bottlenecks caused by these subsystems and fixing them. We also cover how to tune and optimize your PHP scripts so they run even faster.
What is PHP and Why Should I Care? PHP / Getting Started
One of the first things most people want to know about PHP is what the initials stand for. Then they wish they had never asked. Officially, PHP stands for PHP: Hypertext Preprocessor.
PHP Basics PHP / Getting Started
In this tutorial, i will teach you how to make a basic php program.. Mainly how to print output from a php script... I hope you will enjoy using PHP as much as i have, and that you will NEVER use ASP again (if you ever have).
PHP Introduction PHP / Getting Started
PHP stands for PHP: Hypertext Preprocessor. PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly.
Extending PHP PHP / Miscellaneous
This article describes how to easily create a PHP extension with C or C++. Examples of bundled PHP extensions include the MySQL extension or the Sablotron XSL extension. These allow you to provide features to PHP script authors by letting you create functions, in C or C++, which can then be directly called in PHP scripts.