LOG IN
BEGINNER GUIDES
|
PHP CLASSES
|
CODE SEARCH
|
ARTICLES SEARCH
|
PHP FORUMS
|
PHP MANUAL
|
PHP FUNCTIONS LIST
|
WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles
Submit Your Code
SEO Monitor
UpTime Monitor
PHP Code Contest
My Favorite Examples
My Favorite Articles
Update Your Profile
More Weber Sites
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
Recommended Links
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Recommended
Submit Site
Forex Trading
Online forex trading platform
The ArrayObject class
ArrayIterator::valid
ArrayObject::append
SPL
PHP Manual
The ArrayObject class
Introduction
...
Class synopsis
ArrayObject
ArrayObject
implements
IteratorAggregate
,
Traversable
,
ArrayAccess
,
Countable
{
/* Methods */
ArrayObject::__construct
(
mixed
$input
)
void
ArrayObject::append
(
mixed
$newval
)
int
ArrayObject::count
(
void
)
ArrayIterator
ArrayObject::getIterator
(
void
)
bool
ArrayObject::offsetExists
(
mixed
$index
)
mixed
ArrayObject::offsetGet
(
mixed
$index
)
void
ArrayObject::offsetSet
(
mixed
$index
,
mixed
$newval
)
void
ArrayObject::offsetUnset
(
mixed
$index
)
}
Table of Contents
ArrayObject::append
— Appends the value
ArrayObject::__construct
— Construct a new array object
ArrayObject::count
— Get the number of elements in the Iterator
ArrayObject::getIterator
— Create a new iterator from an ArrayObject instance
ArrayObject::offsetExists
— Returns whether the requested $index exists
ArrayObject::offsetGet
— Returns the value at the specified $index
ArrayObject::offsetSet
— Sets the value at the specified $index to $newval
ArrayObject::offsetUnset
— Unsets the value at the specified $index
ArrayIterator::valid
ArrayObject::append
SPL
PHP Manual