php array
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2479
phpArmory 0.2
phpArmory is a PHP class library that allows developers to access data from the World of Warcraft Armory Web site. more>>
phpArmory is a PHP class library. It allows PHP software developers to easily access data from the World of Warcraft Armory Web site.
phpArmory project is useful because the Armory Web site contains up-to-date and official details on characters, guilds, and items in World of Warcraft.
Enhancements:
- Class functions return an associative array instead of serialized XML data.
- Added phpArmory::itemFetch() which returns an associative array with item details.
<<lessphpArmory project is useful because the Armory Web site contains up-to-date and official details on characters, guilds, and items in World of Warcraft.
Enhancements:
- Class functions return an associative array instead of serialized XML data.
- Added phpArmory::itemFetch() which returns an associative array with item details.
Download (0.17MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
872 downloads
AVL Array 1.2
AVL Array is an STL-like container for C++ that fills the gap between vector. more>>
AVL Array is an STL-like container for C++ that fills the gap between vector (or deque) and list, providing both fast random access and fast insertion/removal, all O(log n).
This is not a map; in an avl_array, the "keys" always range from 0 to size-1, and they automatically change on insertion or removal. As a sequence container, like vector and list, it respects the order of elements.
Enhancements:
- documentation
- source reorganized for readability
- compliance with higher standards
- performance improvements
<<lessThis is not a map; in an avl_array, the "keys" always range from 0 to size-1, and they automatically change on insertion or removal. As a sequence container, like vector and list, it respects the order of elements.
Enhancements:
- documentation
- source reorganized for readability
- compliance with higher standards
- performance improvements
Download (0.070MB)
Added: 2006-11-22 License: MIT/X Consortium License Price:
1069 downloads
CPQ Array Daemon 1.2
CPQ Array Daemon project keeps on monitoring your controller and checks for abnormal conditions. more>>
CPQ Array Daemon project keeps on monitoring your controller and checks for abnormal conditions. By default is only reports to the syslogs, but you can make it send SNMP Traps to selected hosts.
This tool can run on a linux based intel box with a smart array controller from Compaq. It reports status changes in the disks both to the syslog and to a snmp trap host.
The default is to only log to the syslog. You can specify traphosts with the -t parameter at the commandline. Multiple traphosts are allowed. It checks for valid input, but any errors are non-fatal, in fact the traphost is just ignored..
To ensure correct opereration compile it for the same kernel that runs on the machine where you want to use this. At least make sure that the version of the SmartArray driver is the same. Strange things can happen otherwise.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<lessThis tool can run on a linux based intel box with a smart array controller from Compaq. It reports status changes in the disks both to the syslog and to a snmp trap host.
The default is to only log to the syslog. You can specify traphosts with the -t parameter at the commandline. Multiple traphosts are allowed. It checks for valid input, but any errors are non-fatal, in fact the traphost is just ignored..
To ensure correct opereration compile it for the same kernel that runs on the machine where you want to use this. At least make sure that the version of the SmartArray driver is the same. Strange things can happen otherwise.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Download (0.092MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
851 downloads
PHP AnyXML 0.1.1
PHP AnyXML is an XML read-only class which offers PHP5 SimpleXMLs capabilities on ANY host. more>>
PHP AnyXML is an XML read-only class which offers PHP5 SimpleXMLs capabilities on ANY host, even if PHP4 and/or without the expat extension.
AnyXML project will always choose the best available library to offer its functionality. Your solution to PHP+XML messes.
AnyXML API documentation
When loading an XML file the first XML tag becomes the root node. An XML file should contain only one parent tag.
Please note that AnyXML offers a read-only layer and no write facility. All child nodes (with the same name) are grouped into arrays.
AnyXML API defines:
* getAllChildren()
returns all the child nodes of the AnyXML object
* getValue()
returns the text value of the AnyXML object; this is the text contained in the tag
or that gathered from its child nodes
* getName()
returns the tag name of the current AnyXML object
* getElementByPath($path)
returns an AnyXML object from the specified $path
if the path was not valid, null is returned
if there is more than one element in that path, an array is returned
* getValueByPath()
same as ::getElementByPath($path)->getValue()
* attributes($attr = null)
returns attribute $attr or the full list of attributes if $attr is not specified
* map($callback, $args = array())
maps a callback function to all children
<<lessAnyXML project will always choose the best available library to offer its functionality. Your solution to PHP+XML messes.
AnyXML API documentation
When loading an XML file the first XML tag becomes the root node. An XML file should contain only one parent tag.
Please note that AnyXML offers a read-only layer and no write facility. All child nodes (with the same name) are grouped into arrays.
AnyXML API defines:
* getAllChildren()
returns all the child nodes of the AnyXML object
* getValue()
returns the text value of the AnyXML object; this is the text contained in the tag
or that gathered from its child nodes
* getName()
returns the tag name of the current AnyXML object
* getElementByPath($path)
returns an AnyXML object from the specified $path
if the path was not valid, null is returned
if there is more than one element in that path, an array is returned
* getValueByPath()
same as ::getElementByPath($path)->getValue()
* attributes($attr = null)
returns attribute $attr or the full list of attributes if $attr is not specified
* map($callback, $args = array())
maps a callback function to all children
Download (MB)
Added: 2007-07-11 License: LGPL (GNU Lesser General Public License) Price:
835 downloads
PHP pam_auth 0.4
PHP pam_auth is a basic extension to allow you to authenticate users using PHP via PAM. more>>
PHP pam_auth is a basic extension to allow you to authenticate users using PHP via PAM. PHP pam_auth contains only one function, pam_auth(), which will return true or false. It is meant to provide simple authentication without hassle.
<<less Download (0.007MB)
Added: 2006-05-15 License: The PHP License Price:
1273 downloads
PHP FormMail 2.0
PHP FormMail provides an ASP/PHP script conversion of FormMail.pl. more>>
PHP FormMail provides an ASP/PHP script conversion of FormMail.pl.
PHP FormMail is a PHP script conversion of the original FormMail.pl, but with many security and spam related fixes and improvements. Some customization options are removed for simplicity while keeping functionality and improving it where neccessary. An ASP version of this script is also included.
<<lessPHP FormMail is a PHP script conversion of the original FormMail.pl, but with many security and spam related fixes and improvements. Some customization options are removed for simplicity while keeping functionality and improving it where neccessary. An ASP version of this script is also included.
Download (0.007MB)
Added: 2007-02-21 License: Freely Distributable Price:
596 downloads
PHP Runner 1.0.0
PHP Runner project is a Web-based program for editing and previewing PHP files. more>>
PHP Runner project is a Web-based program for editing and previewing PHP files.
PHP Runner is a simple but useful program for easily previewing a PHP file without saving or uploading it to a server.
It has a friendly interface with useful tools such as buttons for the most frequently used PHP functions to make scripting easier and faster.
Main features:
- Runs PHP codes of your page without saving or uploading them on server.
- Helps to insert easily most used PHP functions. Very easy installation and using.
<<lessPHP Runner is a simple but useful program for easily previewing a PHP file without saving or uploading it to a server.
It has a friendly interface with useful tools such as buttons for the most frequently used PHP functions to make scripting easier and faster.
Main features:
- Runs PHP codes of your page without saving or uploading them on server.
- Helps to insert easily most used PHP functions. Very easy installation and using.
Download (0.043MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
1087 downloads
Cute PHP Library 0.51
Cute PHP library is a small collection of classes for PHP. more>>
Cute PHP library is a small collection of classes for PHP witch purpose is to simplify functions for daily work with PHP. e.g. convertions, formating, DB session.
<<less Download (0.11MB)
Added: 2006-05-25 License: LGPL (GNU Lesser General Public License) Price:
1250 downloads
PHP Screw 1.3
PHP Screw is a PHP script encryption tool. more>>
PHP Screw is a PHP script encryption tool. When you are developing a commercial package using PHP, the script can be distributed as encrypted up until just before execution, preserving your intellectual property.
<<less Download (0.008MB)
Added: 2005-09-19 License: BSD License Price:
1497 downloads
PHP 5.2.3
PHP is a high-level scripting language. more>>
PHP is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. Its syntax draws upon C, Java, and Perl, and is easy to learn.
PHP runs on many different platforms and can be used as a standalone executable or as a module under a variety of Web servers. It has excellent support for databases, XML, LDAP, IMAP, Java, various Internet protocols, and general data manipulation, and is extensible via its powerful API.
PHP project is actively developed and supported by a talented and energetic international team. Numerous Open Source and commercial PHP-based application packages are available.
<<lessPHP runs on many different platforms and can be used as a standalone executable or as a module under a variety of Web servers. It has excellent support for databases, XML, LDAP, IMAP, Java, various Internet protocols, and general data manipulation, and is extensible via its powerful API.
PHP project is actively developed and supported by a talented and energetic international team. Numerous Open Source and commercial PHP-based application packages are available.
Download (7.0MB)
Added: 2007-06-01 License: The PHP License Price:
905 downloads
Other version of PHP
Array-util 1.0
Array-util is a small tool to get some information from a SmartArray controller. more>>
Array-util project was tested on: It gives you an overview of all logical and physical drives, including basic information on sizes etc. It is supposed to become a configuration tool in the future. Note that it only works with SmartArray driver version 1.0.1+
Array-util project was tested on:
- Compaq Proliant 2500 with SmartArray 2DH
- Compaq Proliant 1600 with SmartArray 2DH
- Compaq Proliant ML350 with an additional Smart Array 431-Controller (thanks to Christian Bauer)
- Compaq Proliant DL380 with Internal SmartArray controller (thanks to Jason Sturgeon)
- Compaq Proliant ML370 with Integrated SmartArray (thanks to Brian Rossmeisl)
- Compaq Proliant 5500 with a SmartArray 3200 (thanks to Andrew A. Neuschwander)
- Compaq Proliant 1850R with a SmartArray 3200 (thanks to Brian Towles)
- Compaq Proliant 6400R with a SmartArray 3200 (thanks to Brian Towles)
- Compaq Proliant 3000 with a SmartArray 3200 (thanks to Brian Towles)
- Compaq Proliant DL580 with two SmartArray 4200 (thanks to Dietmar Stein)
Known bugs:
Array-util: Blinking is not working on a DL380.
Array-util: Hotspares are not listed in array-util.
Array-util: There is no progess indicator of the rebuild process.
<<lessArray-util project was tested on:
- Compaq Proliant 2500 with SmartArray 2DH
- Compaq Proliant 1600 with SmartArray 2DH
- Compaq Proliant ML350 with an additional Smart Array 431-Controller (thanks to Christian Bauer)
- Compaq Proliant DL380 with Internal SmartArray controller (thanks to Jason Sturgeon)
- Compaq Proliant ML370 with Integrated SmartArray (thanks to Brian Rossmeisl)
- Compaq Proliant 5500 with a SmartArray 3200 (thanks to Andrew A. Neuschwander)
- Compaq Proliant 1850R with a SmartArray 3200 (thanks to Brian Towles)
- Compaq Proliant 6400R with a SmartArray 3200 (thanks to Brian Towles)
- Compaq Proliant 3000 with a SmartArray 3200 (thanks to Brian Towles)
- Compaq Proliant DL580 with two SmartArray 4200 (thanks to Dietmar Stein)
Known bugs:
Array-util: Blinking is not working on a DL380.
Array-util: Hotspares are not listed in array-util.
Array-util: There is no progess indicator of the rebuild process.
Download (0.021MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
855 downloads
PHP Active Code Library 0.10
PHP Active Code Library (ACL) is a PHP 5 class used to store and call PHP files that are stored in a database. more>>
PHP Active Code Library (ACL) is a PHP 5 class used to store and call PHP files that are stored in a database.
The files are stored in a plain text field and not a binary field. PHP ACL also takes care of include/require calls.
If a file includes another file stored in the database, PHP ACL takes care of getting, generating, and including that file.
<<lessThe files are stored in a plain text field and not a binary field. PHP ACL also takes care of include/require calls.
If a file includes another file stored in the database, PHP ACL takes care of getting, generating, and including that file.
Download (0.013MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1191 downloads
PHP Polar Tools 0.4
PHP Polar Tools is a set of PHP classes for the parsing and management of Polar Heart Rate Monitor data. more>>
PHP Polar Tools project is a set of PHP classes that can parse and manage the Polar Heart Rate Monitor data.
<<less Download (MB)
Added: 2007-04-21 License: GPL (GNU General Public License) Price:
916 downloads
PHP-GTK 2.0.0 Alpha
PHP-GTK is a PHP extension that implements language bindings for GTK+ toolkit. more>>
PHP-GTK is a PHP extension that implements language bindings for GTK+ toolkit.
PHP-GTK is an extension for the PHP programming language that implements language bindings for GTK+. It provides an object-oriented interface to GTK+ classes and functions and greatly simplifies writing client-side cross-platform GUI applications.
<<lessPHP-GTK is an extension for the PHP programming language that implements language bindings for GTK+. It provides an object-oriented interface to GTK+ classes and functions and greatly simplifies writing client-side cross-platform GUI applications.
Download (0.29MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1193 downloads
PHP-Qt 0.1
PHP-Qt is an extension for PHP 5.1 that makes it possible to write software with the Qt toolkit. more>>
PHP-Qt library is an extension for PHP 5.1 that makes it possible to write software with the Qt toolkit.
It provides an object-oriented interface to the Qt 4 framework.
<<lessIt provides an object-oriented interface to the Qt 4 framework.
Download (0.19MB)
Added: 2007-07-14 License: LGPL (GNU Lesser General Public License) Price:
837 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above php array search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed