如果只是一个数字列表,我建议将它们保存在一个文本文件中,每行都有一个数字。
110019
111222
112233
然后,当您需要该文件时,使用PHP读取其内容,并使用
preg_split()
要将其转换为阵列,请执行以下操作:
$file_path = plugin_dir_path( \'postcodes.txt\', __FILE__ ); // Or wherever you\'ve placed it.
$file_contents = file_get_contents( $file_path );
$postcodes = preg_split( "/\\r\\n|\\n|\\r/", $file_contents );
if ( in_array( $postcode, $postcodes ) ) {
}
那个
preg_split()
基于换行符拆分文本的方法取自
here.