1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-24 07:22:16 +01:00
Files
Julio Napurí 0a8722b3d2 fix(translation): updated reflection, simplexml, soap references (#290)
* fix(translation): updated reflection, simplexml, soap references

* fix(translation): typo soapclient link

* Reviewed

Corrected indentation, and removed `**`

---------

Co-authored-by: Marcos Porto Mariño <php@marcospor.to>
2025-10-24 23:51:49 +02:00

117 lines
2.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: ce98b568f85353c4bf263133f09c4db9294833f9 Maintainer: PhilDaiguille Status: ready -->
<!-- Reviewed: yes Maintainer: Marqitos -->
<refentry xml:id="reflectionmethod.setaccessible" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>ReflectionMethod::setAccessible</refname>
<refpurpose>Define la accesibilidad del método</refpurpose>
</refnamediv>
<refsynopsisdiv>
&warn.deprecated.function-8-5-0;
</refsynopsisdiv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis role="ReflectionMethod">
<modifier role="attribute">#[\Deprecated]</modifier>
<modifier>public</modifier> <type>void</type><methodname>ReflectionMethod::setAccessible</methodname>
<methodparam><type>bool</type><parameter>accessible</parameter></methodparam>
</methodsynopsis>
<para>
Activa la invocación de métodos protegidos y privados mediante el método
<methodname>ReflectionMethod::invoke</methodname>.
</para>
<note>
<simpara>
A partir de PHP 8.1.0, la llamada a este método no tiene ningún efecto; todas las propiedades son accesibles por defecto.
</simpara>
</note>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>accessible</parameter></term>
<listitem>
<para>
&true; para permitir la accesibilidad, o &false;.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.void;
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<example>
<title>Definición de una clase simple</title>
<programlisting role="php">
<![CDATA[
<?php
class MyClass
{
private function foo()
{
return 'bar';
}
}
$method = new ReflectionMethod("MyClass", "foo");
$method->setAccessible(true);
$obj = new MyClass();
echo $method->invoke($obj);
echo $obj->foo();
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
bar
Fatal error: Uncaught Error: Call to private method MyClass::foo() from global scope in /in/qdaZS:16
]]>
</screen>
</example>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><methodname>ReflectionMethod::isPrivate</methodname></member>
<member><methodname>ReflectionMethod::isProtected</methodname></member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- 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
-->