我正在处理如下所示的 php 代码,它扫描目录($src_dir)并列出所有 mp4 文件。
$src_dir = ('\\\ABCD-ST-001\Audio_Test\podcast\incoming_folder');
$mp4_files = preg_grep('~\.(mp4)$~', scandir($src_dir));
print_r(array_values($mp4_files)); // LineA
这是从Line#A获得的O/P:
Array ( [0] => 36031P.mp4 [1] => hello.mp4 )
我在 Index 0和 Index 1得到两个值。第一个是36031P.mp4,第二个是hello.mp4
之后我写了一个脚本,在 table 中插入数据Podcast_Export。
$db->exec("INSERT INTO Podcast_Export ('House#', 'Status') VALUES ('array_values($mp4_files)', 'Go')"); /* have to place this question on SO*/
在运行上述脚本时,我在表中获得了以下数据,这不是我想要的。
array_values(Array) Go
array_values(Array) Go
问题陈述:
我想知道我应该在上面的脚本中进行哪些更改,以便在表中插入以下数据:
36031 Go
hello Go