Yaf_Application::environ

(Yaf >=1.0.0)

Yaf_Application::environRetrive environ

설명

public void Yaf_Application::environ ( void )

Retrive environ which was defined in yaf.environ which has a default value "product".

인수

이 함수는 인수가 없습니다.

반환값

예제

Example #1 Yaf_Application::environ()example

<?php
$config 
= array(
    
"application" => array(
        
"directory" => realpath(dirname(__FILE__)) . "/application",
    ),
);

/** Yaf_Application */
$application = new Yaf_Application($config);
print_r($application->environ());
?>

위 예제의 출력 예시:

product
add a note add a note

User Contributed Notes

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