Home > Backend Development > PHP Tutorial > 弱弱地问一下,php和node.js怎么共用一个配置文件?

弱弱地问一下,php和node.js怎么共用一个配置文件?

WBOY
Release: 2016-06-06 20:08:42
Original
933 people have browsed it

就是我写了一个网站,他用到了 phpnode.js ,他们分别有自己的config文件(config.php和config.js)用来设置数据库的账号密码什么的,每一次把它放到云服务器上去的时候,都要修改两个config文件,其实两个config文件内容差不多,那可不可以合起来写到一起?让以后修改更加方便?

回复内容:

就是我写了一个网站,他用到了 phpnode.js ,他们分别有自己的config文件(config.php和config.js)用来设置数据库的账号密码什么的,每一次把它放到云服务器上去的时候,都要修改两个config文件,其实两个config文件内容差不多,那可不可以合起来写到一起?让以后修改更加方便?

用一个 config.json 作为共用配置,config.php 和 config.js 直接读取 json 里面的配置文件并输出原来的变量就好了。不过由于是静态文件,记得 config.json 这个文件设置好 HTTP 权限,别让别人把配置给拖了。

创建公共config.json不就行了吗
各自引入同一份配置文件
php应该能直接require json吧
node就更不用说了

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template