doutu1939 2018-09-12 12:21
浏览 67

Azure App Service上的Wordpress读取应用程序设置

I have a WordPress site running on Azure as an App Service. I plan on using deployment slots to set up a test environment. I have some environment-specific settings. If I was running .NET I would read the app settings.

Is it possible for PHP to read app settings?

  • 写回答

1条回答 默认 最新

  • douke9379 2018-09-13 13:49
    关注

    You can use getenv() to read a setting

    getenv('settingname');
    
    评论

报告相同问题?