PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Config_Container::getAttributes | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Config_Container::getAttributes

Config_Container::getAttributes() – アイテムの総ての属性を取得する

Synopsis

require_once 'Config/Container.php';

array Config_Container::getAttributes ( ( void )

Description

この関数は、このコンテナーの総ての属性を配列で返します。

Return value

array - アイテムの総ての属性を返します。

Note

This function can not be called statically.

Example

属性の使用法

<?php
$attributes 
= array('id' => 'db''language' => 'en');
     
$section =& new Config_Container('section''main'null$attributes);
     
$section->createDirective('authentication''test', array('type' => 'mysql',
     
'host' => 'localhost'));

     echo 
$section->toString('phparray');
     echo 
$section->toString('xml');
?>

総ての属性を'@'キーとPHP配列タイプで設定する


<?php
$main['@']['id'] = 'db';
$main['@']['language'] = 'en';
$main['authentication']['#'] = 'test';
$main['authentication']['@']['type'] = 'mysql';
$main['authentication']['@']['host'] = 'localhost';
?>

xmlタイプで通常の方法を用いて総ての属性をで設定する


       <?xml version="1.0" encoding="ISO-8859-1"?>
       <main id="db" language="en">
        <authentication type="mysql" host="localhost">
         test
        </authentication>;
       </main>
忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Config_Container::getAttributes」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Config_Container::getAttributes」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: