PHP 8.6.0 Beta 3 is available for testing

Yaf_Config_Ini::__isset

(Yaf >=1.0.0)

Yaf_Config_Ini::__issetCheck if a key exists

Descrizione

public function Yaf_Config_Ini::__isset(string $name): bool

Checks whether a configuration key exists. This method is invoked when isset() is used on a configuration object.

Elenco dei parametri

name

The configuration key to check.

Valori restituiti

Returns true if the key exists, false otherwise.

Esempi

Example #1 Yaf_Config_Ini::__isset() example

<?php
/**
 * Assume /etc/myapp/application.ini contains:
 * [common]
 * application.name = "MyApp"
 * database.host    = "localhost"
 * database.port    = 3306
 */
$config = new Yaf_Config_Ini('/etc/myapp/application.ini', 'common');

var_dump(isset($config->database));
var_dump($config->__isset('database'));
var_dump(isset($config->cache));
?>

Il precedente esempio visualizzerà qualcosa simile a:

bool(true)
bool(true)
bool(false)

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top