PHPanywhere is a free web based PHP IDE which enables you to develop and maintain your PHP applications online. It provides you with all the code editing features required to develop PHP applications online. It has a built in real-time syntax code editor with support for all web formats and a powerful FTP explorer.
Tag Archives: PHP
PHP Spell Checker
The PHP Spell Check component adds fast, reliable spell-checking to web sites and intranets. Installed on either IIS and Apache Servers, PHP Spell Check works on all major browsers since IE5.
PHP Predefined Constants
Core Predefined Constants These constants are defined by the PHP core. This includes PHP, the Zend engine, and SAPI modules.
PHP Rename File If Exists
function rename_if_exists($dir, $filename) { $ext = strrchr($filename, ‘.’); $prefix = substr($filename, 0, -strlen($ext)); $i = 0; while(file_exists($dir . $filename)) { // If file exists, add a number to it. $filename = $prefix . ++$i . $ext; } return $filename; }
PHP readfile
Returns the number of bytes read from the file. If an error occurs, FALSE is returned and unless the function was called as @readfile(), an error message is printed.
Generating PHP Documentation With NetBeans IDE
This screencast shows how to generate PHP documentation using PHPDocumentor with NetBeans IDE. Built-in support for PHPDocumentor was added in NetBeans IDE 7.0. The screencast includes details of installing PHPDocumentor with PEAR and configuring PHPDocumentor, NetBeans IDE and your php.ini file. This video is especially useful for developers using NetBeans on a Microsoft Windows operating …
Continue reading “Generating PHP Documentation With NetBeans IDE”