Search found 21 matches

by moslemir
Sun Oct 14, 2007 3:56 pm
Forum: Accepted Requests
Topic: Beginers Hosting Package
Replies: 1
Views: 1644

Beginers Hosting Package

moslem mansoury
moslem.ir@gawab.com
1 year for moslemir.ir
accept the TOS (yes)
Beginers Hosting Package
by moslemir
Sun Oct 14, 2007 3:35 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

sizeof [/b]
(PHP 4, PHP 5)

sizeof — Alias of count()

Description
This function is an alias of: count().


--------------------------------------------------------------------------
sort [/b]
(PHP 4, PHP 5)

sort — Sort an array

Description
bool sort ( array &$array [, int ...
by moslemir
Sun Oct 14, 2007 3:34 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

reset [/b]
(PHP 4, PHP 5)

reset — Set the internal pointer of an array to its first element

Description
mixed reset ( array &$array )

reset() rewinds array's internal pointer to the first element and returns the value of the first array element, or FALSE if the array is empty ...
by moslemir
Sun Oct 14, 2007 3:33 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

pos [/b]
(PHP 4, PHP 5)

pos — Alias of current()

Description
This function is an alias of: current()


--------------------------------------------------------------------------
prev [/b]
(PHP 4, PHP 5)

prev — Rewind the internal array pointer

Description
mixed prev ( array ...
by moslemir
Sun Oct 14, 2007 3:33 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

natcasesort [/b]
(PHP 4, PHP 5)

natcasesort — Sort an array using a case insensitive "natural order" algorithm

Description
bool natcasesort ( array &$array )

This function implements a sort algorithm that orders alphanumeric strings in the way a human being would while maintaining key ...
by moslemir
Sun Oct 14, 2007 3:32 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

krsort [/b]
(PHP 4, PHP 5)

krsort — Sort an array by key in reverse order

Description
bool krsort ( array &$array [, int $sort_flags] )

Sorts an array by key in reverse order, maintaining key to data correlations. This is useful mainly for associative arrays.

Returns TRUE on success ...
by moslemir
Sun Oct 14, 2007 3:32 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

extract [/b]
(PHP 4, PHP 5)

extract — Import variables into the current symbol table from an array

Description
int extract ( array $var_array [, int $extract_type [, string $prefix]] )

This function is used to import variables from an array into the current symbol table. It takes an ...
by moslemir
Sun Oct 14, 2007 3:31 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

current [/b]
(PHP 4, PHP 5)

current — Return the current element in an array

Description
mixed current ( array &$array )

Every array has an internal pointer to its "current" element, which is initialized to the first element inserted into the array.

The current() function simply ...
by moslemir
Sun Oct 14, 2007 3:30 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

asort [/b]
(PHP 4, PHP 5)

asort — Sort an array and maintain index association

Description
bool asort ( array &$array [, int $sort_flags] )

This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used ...
by moslemir
Sun Oct 14, 2007 3:25 pm
Forum: PHP
Topic: Function Reference
Replies: 21
Views: 17017

array_walk [/b]
(PHP 4, PHP 5)

array_walk — Apply a user function to every member of an array

Description
bool array_walk ( array &$array, callback $funcname [, mixed $userdata] )

Returns TRUE on success or FALSE on failure.

Applies the user-defined function funcname to each element ...