1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-25 16:02:13 +01:00
Files
archived-doc-es/language/predefined/arrayaccess.xml
Pedro Antonio Gil Rodríguez bf965a24e9 Actualización a la última versión
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@336362 c90b9560-bf6c-de11-be94-00142212c4b1
2015-04-04 11:45:55 +00:00

151 lines
3.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: dac44789165076f0681f0f3403a80c57a4c99b4c Maintainer: jorgeolaya Status: ready -->
<!-- Reviewed: yes Maintainer: seros -->
<phpdoc:classref xml:id="class.arrayaccess" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>La interfaz ArrayAccess</title>
<titleabbrev>ArrayAccess</titleabbrev>
<partintro>
<!-- {{{ ArrayAccess intro -->
<section xml:id="arrayaccess.intro">
&reftitle.intro;
<para>
Interfaz para proporcionar acceso a objetos como arrays.
</para>
</section>
<!-- }}} -->
<section xml:id="arrayaccess.synopsis">
&reftitle.interfacesynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ArrayAccess</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ArrayAccess</classname>
</ooclass>
</classsynopsisinfo>
<!-- }}} -->
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.arrayaccess')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
<section xml:id="arrayaccess.examples">
<example xml:id="arrayaccess.example.basic"><!-- {{{ -->
<title>Uso básico</title>
<programlisting role="php">
<![CDATA[
<?php
class obj implements ArrayAccess {
private $contenedor = array();
public function __construct() {
$this->contenedor = array(
"uno" => 1,
"dos" => 2,
"tres" => 3,
);
}
public function offsetSet($offset, $valor) {
if (is_null($offset)) {
$this->contenedor[] = $valor;
} else {
$this->contenedor[$offset] = $valor;
}
}
public function offsetExists($offset) {
return isset($this->contenedor[$offset]);
}
public function offsetUnset($offset) {
unset($this->contenedor[$offset]);
}
public function offsetGet($offset) {
return isset($this->contenedor[$offset]) ? $this->contenedor[$offset] : null;
}
}
$obj = new obj;
var_dump(isset($obj["dos"]));
var_dump($obj["dos"]);
unset($obj["dos"]);
var_dump(isset($obj["dos"]));
$obj["dos"] = "Un valor";
var_dump($obj["dos"]);
$obj[] = 'Añadido 1';
$obj[] = 'Añadido 2';
$obj[] = 'Añadido 3';
print_r($obj);
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
bool(true)
int(2)
bool(false)
string(8) "Un valor"
obj Object
(
[contenedor:obj:private] => Array
(
[uno] => 1
[tres] => 3
[dos] => Un valor
[0] => Añadido 1
[1] => Añadido 2
[2] => Añadido 3
)
)
]]>
</screen>
</example><!-- }}} -->
</section>
</partintro>
&language.predefined.arrayaccess.offsetexists;
&language.predefined.arrayaccess.offsetget;
&language.predefined.arrayaccess.offsetset;
&language.predefined.arrayaccess.offsetunset;
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->