IF语句在函数内部不起作用

时间:2019-12-19 16:34:14

标签: php mysql function if-statement slug

如果条件无法在该函数中正常运行,我将尝试创建一个Slug URL函数

我的代码

function slug($text) {

    $data = 'somestring';

        if (in_array($text, $data)) {
            $count = 0;
            while (in_array(($text . '-' . ++$count), $data));
            $text = $text . '-' . $count;

    }
}

0 个答案:

没有答案