2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 06:41:36 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="function.get-class-vars" xmlns="http://docbook.org/ns/docbook">
|
2007-01-14 13:37:31 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>get_class_vars</refname>
|
2007-01-14 15:10:19 +00:00
|
|
|
<refpurpose>Get the default properties of the class</refpurpose>
|
2007-01-14 13:37:31 +00:00
|
|
|
</refnamediv>
|
2007-01-14 15:10:19 +00:00
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-01-14 13:37:31 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>array</type><methodname>get_class_vars</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>class_name</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2007-01-14 15:10:19 +00:00
|
|
|
Get the default properties of the given class.
|
2007-01-14 13:37:31 +00:00
|
|
|
</para>
|
2007-01-14 15:10:19 +00:00
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>class_name</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The class name
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
2010-02-16 23:45:44 +00:00
|
|
|
Returns an associative array of declared properties visible from the
|
2012-02-13 19:55:02 +00:00
|
|
|
current scope, with their default value.
|
2007-01-14 15:10:19 +00:00
|
|
|
The resulting array elements are in the form of
|
|
|
|
<literal>varname => value</literal>.
|
2012-02-13 19:55:02 +00:00
|
|
|
In case of an error, it returns &false;.
|
2007-01-14 15:10:19 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="changelog">
|
|
|
|
&reftitle.changelog;
|
|
|
|
<para>
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>&Version;</entry>
|
|
|
|
<entry>&Description;</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2009-05-25 18:02:56 +00:00
|
|
|
<row>
|
|
|
|
<entry>5.0.3</entry>
|
|
|
|
<entry>
|
|
|
|
Depending on the scope, <function>get_class_vars</function> will
|
|
|
|
only return the properties that can be accessed from the current
|
|
|
|
scope.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>5.0.2</entry>
|
|
|
|
<entry>
|
|
|
|
Calling <function>get_class_vars</function> will now expose
|
|
|
|
all the properties as an array, unlike previous behaviour where
|
|
|
|
protected and private properties were prefixed with nul bytes.
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
<row>
|
|
|
|
<entry>5.0.1</entry>
|
|
|
|
<entry>
|
|
|
|
Calling <function>get_class_vars</function> will expose all
|
|
|
|
properties, as when converting an object to a class.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2007-01-14 15:10:19 +00:00
|
|
|
<row>
|
|
|
|
<entry>Prior to 4.2.0</entry>
|
|
|
|
<entry>
|
|
|
|
Uninitialized class variables will not be reported by
|
|
|
|
<function>get_class_vars</function>
|
|
|
|
</entry>
|
|
|
|
</row>
|
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
2007-01-14 13:37:31 +00:00
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>get_class_vars</function> example</title>
|
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
|
|
|
|
class myclass {
|
|
|
|
|
|
|
|
var $var1; // this has no default value...
|
|
|
|
var $var2 = "xyz";
|
|
|
|
var $var3 = 100;
|
2004-12-24 20:43:35 +00:00
|
|
|
private $var4; // PHP 5
|
2007-01-14 13:37:31 +00:00
|
|
|
|
2002-04-15 00:12:54 +00:00
|
|
|
// constructor
|
|
|
|
function myclass() {
|
2004-01-08 23:50:15 +00:00
|
|
|
// change some properties
|
|
|
|
$this->var1 = "foo";
|
|
|
|
$this->var2 = "bar";
|
|
|
|
return true;
|
2002-04-15 00:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$my_class = new myclass();
|
|
|
|
|
|
|
|
$class_vars = get_class_vars(get_class($my_class));
|
|
|
|
|
|
|
|
foreach ($class_vars as $name => $value) {
|
|
|
|
echo "$name : $value\n";
|
|
|
|
}
|
|
|
|
|
2007-01-14 13:37:31 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2007-01-14 13:37:31 +00:00
|
|
|
</programlisting>
|
|
|
|
&example.outputs;
|
|
|
|
<screen>
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
2002-11-15 10:35:58 +00:00
|
|
|
// Before PHP 4.2.0
|
|
|
|
var2 : xyz
|
|
|
|
var3 : 100
|
|
|
|
|
|
|
|
// As of PHP 4.2.0
|
|
|
|
var1 :
|
2002-04-15 00:12:54 +00:00
|
|
|
var2 : xyz
|
|
|
|
var3 : 100
|
2009-05-25 18:02:56 +00:00
|
|
|
]]>
|
|
|
|
</screen>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>get_class_vars</function> and scoping behaviour</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
function format($array)
|
|
|
|
{
|
2010-02-03 13:22:27 +00:00
|
|
|
return implode('|', array_keys($array)) . "\r\n";
|
2009-05-25 18:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class TestCase
|
|
|
|
{
|
2010-02-03 13:22:27 +00:00
|
|
|
public $a = 1;
|
|
|
|
protected $b = 2;
|
|
|
|
private $c = 3;
|
2009-05-25 18:02:56 +00:00
|
|
|
|
2010-02-03 13:22:27 +00:00
|
|
|
public static function expose()
|
|
|
|
{
|
|
|
|
echo format(get_class_vars(__CLASS__));
|
|
|
|
}
|
2009-05-25 18:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TestCase::expose();
|
|
|
|
echo format(get_class_vars('TestCase'));
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
&example.outputs;
|
|
|
|
<screen>
|
|
|
|
<![CDATA[
|
|
|
|
// 5.0.0
|
|
|
|
a| * b| TestCase c
|
|
|
|
a| * b| TestCase c
|
|
|
|
|
|
|
|
// 5.0.1 - 5.0.2
|
|
|
|
a|b|c
|
|
|
|
a|b|c
|
|
|
|
|
|
|
|
// 5.0.3 +
|
|
|
|
a|b|c
|
|
|
|
a
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2007-01-14 13:37:31 +00:00
|
|
|
</screen>
|
|
|
|
</example>
|
|
|
|
</para>
|
2007-01-14 15:10:19 +00:00
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>get_class_methods</function></member>
|
|
|
|
<member><function>get_object_vars</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
2007-01-14 13:37:31 +00:00
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2002-04-15 00:12:54 +00:00
|
|
|
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
|
|
|
|
-->
|