Öntanımlı Sabitler

Buradaki sabitler bu eklenti için tanımlanmış olup, sadece eklentinin PHP içinde derlenmiş olması veya çalışma anında dinamik olarak yüklenmesi halinde kullanılabilir.

YAF_VERSION (string)
YAF_ENVIRON (string)
YAF_ERR_STARTUP_FAILED (int)
YAF_ERR_ROUTE_FAILED (int)
YAF_ERR_DISPATCH_FAILED (int)
YAF_ERR_AUTOLOAD_FAILED (int)
YAF_ERR_NOTFOUND_MODULE (int)
YAF_ERR_NOTFOUND_CONTROLLER (int)
YAF_ERR_NOTFOUND_ACTION (int)
YAF_ERR_NOTFOUND_VIEW (int)
YAF_ERR_CALL_FAILED (int)
YAF_ERR_TYPE_ERROR (int)

add a note

User Contributed Notes 1 note

up
0
lee dot howarth dot 90 at gmail dot com
11 years ago
The documentation here is not fully correct.<?php    print_r(get_defined_constants());   die;?>Will show basically:  [PHP_YAF_VERSION] => 2.3.2    [YAF_ENVIRON] => product    [YAF_ERR_STARTUP_FAILED] => 512    [YAF_ERR_ROUTE_FAILED] => 513    [YAF_ERR_DISPATCH_FAILED] => 514    [YAF_ERR_AUTOLOAD_FAILED] => 520    [YAF_ERR_NOTFOUND_MODULE] => 515    [YAF_ERR_NOTFOUND_CONTROLLER] => 516    [YAF_ERR_NOTFOUND_ACTION] => 517    [YAF_ERR_NOTFOUND_VIEW] => 518    [YAF_ERR_CALL_FAILED] => 519    [YAF_ERR_TYPE_ERROR] => 521So use PHP_YAF_VERSION instead of just YAF_VERSION
To Top