我们,对php很新,我在手册中找不到这个答案。 基本上如果我有这种情况:
$errors = array();
我想分配多个字符串到$ error,具体取决于我正在测试的输入字段,我该怎么办?我知道我可以为第一个做到这一点:
$errors[] = 'You must select a title';
并将字符串保存在$ errors [0]中 但如果事后我做了:
$errors[] = 'Insert a first name';
第二个字符串会发生什么,是否保存在$ error [1]中? 感谢