Nexenta 2.0 Alpha 1 (Development branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Nexenta 2.0 Alpha 1 (Development branch)
# 1  
Old 06-18-2008
Nexenta 2.0 Alpha 1 (Development branch)

Image Nexenta is a complete GNU-based operating system built on top of the OpenSolaris kernel and runtime. The Debian system is used for software distribution and packaging to glue the numerous pieces together. However, Nexenta is not currently part of the Debian Project, nor are its packages present in the Debian database. It includes Apache, MySQL, Perl, Python, PHP, Firefox, Evolution, a software update manager, Synaptic package manager, Gaim, Abiword, administration and development utilities, editors, graphics, GNOME, interpreters, libraries, and much more. License: Common Development and Distribution License (CDDL) Changes:
3392 packages were ported over the two weeks of the Hardy Hackathon Fest. This includes the latest dpkg/apt, gcc, binutils, coreutils, perl, python, ruby, Qt libs, GTK libs, and more. This release is based on Ubuntu 8.04 LTS (Hardy Heron) and OpenSolaris b85+ (x86 32-bit and 64-bit, non-debug), with critical patches from b87, b88, and b90.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
IMPLODE(3)								 1								IMPLODE(3)

implode - Join array elements with a string

SYNOPSIS
string implode (string $glue, array $pieces) DESCRIPTION
string implode (array $pieces) Join array elements with a $glue string. Note implode(3) can, for historical reasons, accept its parameters in either order. For consistency with explode(3), however, it may be less confusing to use the documented order of arguments. PARAMETERS
o $glue - Defaults to an empty string. o $pieces - The array of strings to implode. RETURN VALUES
Returns a string containing a string representation of all the array elements in the same order, with the glue string between each ele- ment. EXAMPLES
Example #1 implode(3) example <?php $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); echo $comma_separated; // lastname,email,phone // Empty string when using an empty array: var_dump(implode('hello', array())); // string(0) "" ?> NOTES
Note This function is binary-safe. SEE ALSO
explode(3), preg_split(3), http_build_query(3). PHP Documentation Group IMPLODE(3)