diff options
author | Friendika <info@friendika.com> | 2011-06-28 21:11:52 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-28 21:11:52 -0700 |
commit | 0b221e8945ae785dc706d8ea9a9e8e25532c0096 (patch) | |
tree | 52d4978006b028c24ee1feb3cf6ba2907a48c88f /library/phpsec/PHP/Compat/Function/array_fill.php | |
parent | 60caa0349416dad1a3a891e3c0e00d33d25d7a91 (diff) | |
download | volse-hubzilla-0b221e8945ae785dc706d8ea9a9e8e25532c0096.tar.gz volse-hubzilla-0b221e8945ae785dc706d8ea9a9e8e25532c0096.tar.bz2 volse-hubzilla-0b221e8945ae785dc706d8ea9a9e8e25532c0096.zip |
bug #96 move libraries to library - better alignment of like rotator
Diffstat (limited to 'library/phpsec/PHP/Compat/Function/array_fill.php')
-rw-r--r-- | library/phpsec/PHP/Compat/Function/array_fill.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/library/phpsec/PHP/Compat/Function/array_fill.php b/library/phpsec/PHP/Compat/Function/array_fill.php new file mode 100644 index 000000000..e02bfa14d --- /dev/null +++ b/library/phpsec/PHP/Compat/Function/array_fill.php @@ -0,0 +1,43 @@ +<?php
+// $Id: array_fill.php,v 1.1 2007/07/02 04:19:55 terrafrost Exp $
+
+
+/**
+ * Replace array_fill()
+ *
+ * @category PHP
+ * @package PHP_Compat
+ * @license LGPL - http://www.gnu.org/licenses/lgpl.html
+ * @copyright 2004-2007 Aidan Lister <aidan@php.net>, Arpad Ray <arpad@php.net>
+ * @link http://php.net/function.array_fill
+ * @author Jim Wigginton <terrafrost@php.net>
+ * @version $Revision: 1.1 $
+ * @since PHP 4.2.0
+ */
+function php_compat_array_fill($start_index, $num, $value)
+{
+ if ($num <= 0) {
+ user_error('array_fill(): Number of elements must be positive', E_USER_WARNING);
+
+ return false;
+ }
+
+ $temp = array();
+
+ $end_index = $start_index + $num;
+ for ($i = (int) $start_index; $i < $end_index; $i++) {
+ $temp[$i] = $value;
+ }
+
+ return $temp;
+}
+
+// Define
+if (!function_exists('array_fill')) {
+ function array_fill($start_index, $num, $value)
+ {
+ return php_compat_array_fill($start_index, $num, $value);
+ }
+}
+
+?>
\ No newline at end of file |