Sponsored Content
Full Discussion: Which OS are you using?
Top Forums UNIX for Dummies Questions & Answers Which OS are you using? Post 302083184 by rhfrommn on Friday 4th of August 2006 01:59:08 PM
Old 08-04-2006
It entirely depends on the type of server and the industry of the company. For example, Sun is (was at least) extremely popular in the Telecom industry while IBM is the king of banking.

Linux is growing rapidly in popularity among small 1 or 2 processor servers. For big machines (8 procs on up) commercial unix dominates, with AIX probably the most popular and Solaris probably 2nd.

You could look up statistics from somebody like Gartner if you wanted to, or even cNet news.com tends to have articles about market shares and all that. But the main point is you can't really have a general number with much meaning too it, you need to know more about the environment to say which OS would be most popular or best.
 
ARRAY_MERGE_RECURSIVE(3)						 1						  ARRAY_MERGE_RECURSIVE(3)

array_merge_recursive - Merge two or more arrays recursively

SYNOPSIS
array array_merge_recursive (array $array1, [array $...]) DESCRIPTION
array_merge_recursive(3) merges the elements of one or more arrays together so that the values of one are appended to the end of the previ- ous one. It returns the resulting array. If the input arrays have the same string keys, then the values for these keys are merged together into an array, and this is done recur- sively, so that if one of the values is an array itself, the function will merge it with a corresponding entry in another array too. If, however, the arrays have the same numeric key, the later value will not overwrite the original value, but will be appended. PARAMETERS
o $array1 - Initial array to merge. o $... - Variable list of arrays to recursively merge. RETURN VALUES
An array of values resulted from merging the arguments together. EXAMPLES
Example #1 array_merge_recursive(3) example <?php $ar1 = array("color" => array("favorite" => "red"), 5); $ar2 = array(10, "color" => array("favorite" => "green", "blue")); $result = array_merge_recursive($ar1, $ar2); print_r($result); ?> The above example will output: Array ( [color] => Array ( [favorite] => Array ( [0] => red [1] => green ) [0] => blue ) [0] => 5 [1] => 10 ) SEE ALSO
array_merge(3), array_replace_recursive(3). PHP Documentation Group ARRAY_MERGE_RECURSIVE(3)
All times are GMT -4. The time now is 01:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy