Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
各ユーザーのホームディレクトリにスクリプトを配置せずに、サーバー内のすべてのcPanelアカウントにPHPスクリプトを含めることは可能ですか?
たとえばglobal.php、サーバーのどこかにあります。
global.php
// global.php class global { }
今user-a.com/test.php、そしてuser-b.com/test.php(別々のcPanelアカウント)がnew global();彼らに利用可能になりますか?
user-a.com/test.php
user-b.com/test.php
new global();
ディレクトリをに配置(または新しいディレクトリを作成)すると、サーバー上のすべてのPHPスクリプトがを介してディレクトリにアクセスできるようになりglobal.phpます。ただし、自動で含めることはお勧めしません。include_pathinclude('global.php')
include_path
include('global.php')