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.
我需要修改数据传输插件,以便可以从命令行导入 CSV(无需与 Web 界面交互)。
所以我研究并修改了 DT_ImportCSV.php 文件,所以它使用命令行参数来获取输入文件的名称。此外,我添加了一些可执行代码,使其不仅仅是类声明。
我将其保存为 DT_ImportCSV2.php 并将其作为“php DT_ImportCSV2.php myfile.csv”运行。没有任何反应,也没有显示错误消息。此外,我在我的程序中添加了一些 printf 调用,但它们都没有打印任何内容。
您的 PHP 脚本在到达这些行之前中止。有上百万个可能的原因,首先按照此处的说明打开调试并检查日志:
http://www.mediawiki.org/wiki/Manual:How_to_debug