我想基于一系列if和else if语句在当前脚本中运行外部脚本(用于整理)。
Essentialyl我想做的就是这个......
if ($business_type == "Restaurant"); {require 'scripts/php/insert.php'}
else if ($business_type == "Hotel"); {require 'scripts/php/insert-hotel.php'}
这是我调用此外部脚本的正确方法吗?
答案 0 :(得分:2)
这是调用脚本的正确方法,但是你的语法有点偏差:)
if ($business_type == "Restaurant"){
require 'scripts/php/insert.php';
}
else if ($business_type == "Hotel"){
require 'scripts/php/insert-hotel.php';
}
您可能需要查看“需要”和“包含”的文档,但对于您在此处所做的事情,要求完全正常。