Is it better to use require_once('filename.php') or require_once 'filename.php';

后端 未结 5 1815
遇见更好的自我
遇见更好的自我 2021-01-01 09:27

Is this just a stylistic difference, or does using require_once(\'filename.php\') vs require_once \'filename.php\' have actual load/efficiency diff

5条回答
  •  旧时难觅i
    2021-01-01 09:59

    There is no difference. I don't use the brackets 'cause they are not necessary. require_once is no function.

提交回复
热议问题