| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
Config_Container::getAttributesConfig_Container::getAttributes() – アイテムの総ての属性を取得する
Synopsis
require_once 'Config/Container.php';
Descriptionこの関数は、このコンテナーの総ての属性を配列で返します。 Return valuearray - アイテムの総ての属性を返します。 NoteThis function can not be called statically. Example属性の使用法
<?php
総ての属性を'@'キーと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> |
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「Config_Container::getAttributes」をGoogle検索
|