Bu PHP sözdizimi doğru?

0 Cevap php

Hey guys:) Need help. I'm currently studying ZEND framework and came across this in index.php:

// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

Bu gibi aynı mı?:

if(!defined('APPLICATION_PATH')){
define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
}

Ben önce steno sözdizimi bu tür rastladım hiç ...

0 Cevap