我想验证列表中包含特定数据的表单字段,例如15位数。在下面的代码示例中,我需要有关代码的帮助来扫描列表中的数字。下面的2个条目是示例,但真实列表将是数百行。
public function validate($value)
{
$file_location = '/path/to/file/a1.txt';
// Mage::log($file_location, null , 'aa.log', 1);
$allowed_values = explode("\n",trim(file_get_contents($file_location)));
array_walk($allowed_values, 'trim');
// $allowed_values = array('');
return in_array($value, $allowed_values);
}
列出示例
C810,34402,BB-H500,356523076903149,TESTE
C810,34402,BB-H500,356523076452163,TESTE
谢谢
答案 0 :(得分:0)
这是一个csv吗?然后尝试
TextBlock