Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将一些变量(数字)存储在一个数组中的单个字符串中。就像,如果我会使用类似的东西
"1 0 0 1 1 0 0 1 1"
将每个数字存储在数组中,例如:
numbers[i];
我确信有一个 PHP 函数可以解决这个问题,不胜感激。
您应该可以使用$numbers = explode(' ', $string);. 这将创建一个基于空格作为分隔符的数组。
$numbers = explode(' ', $string);
更多信息在这里:http ://www.php.net/manual/en/function.explode.php