Split into two variables?

后端 未结 2 1329
独厮守ぢ
独厮守ぢ 2020-12-20 12:03

Say I have the following: \"44-xkIolspO\"

I want to return 2 variables:

$one = \"44\";
$two = \"xkIolspO\";

What would

相关标签:
2条回答
  • 2020-12-20 12:45

    PHP has a function called preg_split() splits a string using a regular expression. This should do what you want.

    Or explode() might be easier.

        $str = "44-xkIolspO";
        $parts = explode("-", $str);
        $one = $parts[0];
        $two = $parts[1];
    
    0 讨论(0)
  • 2020-12-20 12:57

    Try this:

    list($one, $two) = split("-", "44-xkIolspO", 2);

    list($one, $two) = explode("-", "44-xkIolspO", 2);
    
    0 讨论(0)
提交回复
热议问题