通过if语句在脚本中运行PHP外部文件

时间:2015-04-14 13:21:30

标签: php

我想基于一系列if和else if语句在当前脚本中运行外部脚本(用于整理)。

Essentialyl我想做的就是这个......

if ($business_type == "Restaurant"); {require 'scripts/php/insert.php'}

else if ($business_type == "Hotel"); {require 'scripts/php/insert-hotel.php'}

这是我调用此外部脚本的正确方法吗?

1 个答案:

答案 0 :(得分:2)

这是调用脚本的正确方法,但是你的语法有点偏差:)

if ($business_type == "Restaurant"){
    require 'scripts/php/insert.php';
}
else if ($business_type == "Hotel"){
    require 'scripts/php/insert-hotel.php';
}

您可能需要查看“需要”和“包含”的文档,但对于您在此处所做的事情,要求完全正常。