杀死函数内部的脚本是不好的做法?

时间:2015-02-10 10:30:49

标签: php symfony symfony-console

我指的是将die()函数用于调试以外的其他功能。 这是一个很好的工作"情况,但这是不好的做法吗?

use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Filesystem\Exception\IOExceptionInterface;

/**
 * This Command will help Cjw create a new demo site to start off
 * with the Multisite bundle.
 *
 * Class CreateSiteCommand
 * @package Cjw\GeneratorBundle\Command
 */
class RemoveSiteCommand extends ContainerAwareCommand
{
    private $vendor; //eg "Cjw"
    private $fullBundleName; //eg "SiteCjwNetworkBundle"
    private $fullBundleNameWithVendor; //eg "CjwSiteCjwNetworkBundle"
    (more vars)

    /**
     * this function is used to configure the Symfony2 console commands
     */
    protected function configure()
    {
        $this
            ->setName('cjw:delete-site')
            ->setDescription('Delete Cjw Site')
            ->addOption('db_user', null, InputOption::VALUE_REQUIRED, 'If set, the database user will be shown on the instructions');
    }

    /**
     * This function executes the code after the command input has been validated.
     *
     * @param InputInterface $input gets the user input
     * @param OutputInterface $output shows a message on the command line
     * @return int|null|void
     */
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        // set optional db_username

        $dialog = $this->getHelper('dialog');
        $reusable = new \Reusable();
        $fs = new Filesystem();
        $cmd = new \ColorOutput();

        //push only vendors into the vendors array
        $vendors = $reusable->getFileList($reusable->getMainDirectory('src'),true);


        //select a vendor from the array
        $vendor = $dialog->select(
            $output,
            'Select your vendor [1]: ',
            $vendors,
            1
        );

        $bundles_in_vendor = $reusable->getFileList($reusable->getMainDirectory('src/'.$vendors[$vendor]),true);

        //push bundles that start with 'Site' into array
        $sites = array();

        foreach($bundles_in_vendor as $bundle)
        {
            if($reusable->startsWith($bundle,'Site'))
            {
                array_push($sites,$bundle);
            }
        }

        $site_to_delete = $dialog->select(
            $output,
            'Select site to remove: ',
            $sites,
            1
        );

        $bundle_deletion_path = $reusable->getMainDirectory('src/'.$vendors[$vendor]).'/'.$sites[$site_to_delete];

        $are_you_sure = array('yes','no');
        $confirmation = $dialog->select(
            $output,
            'Are you sure you want to delete: '.$sites[$site_to_delete],
            $are_you_sure,
            1
        );

        if($are_you_sure[$confirmation] == 'yes')
        {
            echo $cmd->color('yellow','attempting to remove bundle in: '.$bundle_deletion_path);
            $fs->remove($bundle_deletion_path);

            //returns demo
            $sitename = strtolower($sites[$site_to_delete]);
            $sitename = substr($sitename,0,-6);
            $sitename = substr($sitename,4);
            $this->setRawSiteNameInput($sitename);

            // returns acmedemo
            $symlinkname =  strtolower($vendors[$vendor].substr($sites[$site_to_delete],0,-6));
            $this->removeSymlinks($symlinkname,$this->getRawSiteNameInput());

            $this->createSetters($vendor,substr($sites[$site_to_delete],0,-6));

            $this->deleteEzPublishExtension();
            echo $this->getFullLegacyPath();

            echo $cmd->color('green','deletion process completed.');
        }
        else
        {
            echo "deletion canceled";
            die();
        }

        function_that_further_deletion_process();
    }

这是一个symfony2控制台脚本,用于从某个结构中删除网站

2 个答案:

答案 0 :(得分:2)

这是非常安全的,如果这是你的问题,因为php作为准解释语言在终止执行时不会留下任何痕迹或工件。

如果这是一个好习惯是另一回事。我说它可以用于测试目的,但你应该在最终代码中避免使用它。原因是它使代码难以维护。考虑其他人潜入您的代码并尝试理解逻辑。实际上,人们必须通过所有代码来绊倒这个细节。机会是一个没有,所以你的代码的行为似乎被破坏了。

而是尝试做其中一个:

  • 抛出异常以离开当前范围。这样的异常很可能被调用范围捕获并吞没,但它是一种清晰且可预测的返回方式。显然你应该记录这种行为。

  • 将一个明显超出范围的值返回到“通常”返回的值。例如,nullfalse而不是典型值。这会强制调用范围检查返回值,但无论如何这都是好的做法。

  • 重构您的代码,以便没有理由突然终止执行。

答案 1 :(得分:0)

您还没有告诉我们您对die的意图是什么......因此我们无法判断您是否正在使用正确的工具......

die及其同义词,exit都退出脚本。如果这就是你想要的,那很好。

我倾向于使用exit进行正常操作,而die则用于错误情况(无法正常恢复的情况,例如:无法连接到数据库)。我还使用了die的包装器,所以如果需要,我可以记录这些事件。虽然两个命令都做同样的事情,但意图有所不同,我想在代码中表达这种意图。

在您的示例中,我将使用exit