我有一个 SMS Api,它使用 php 向我的客户发送短信(不是电子邮件)。现在我正在尝试从所有联系电话都存在的 .txt 文件中发送短信:
我的 .txt 文件
shibbir, 8801678877639
babu, 8801534552503
所以我的while循环是这样的:
$file_handle = fopen("$file", "r");
while ( !feof( $file_handle ) ) {
$line_of_text = fgetcsv($file_handle, 1024);
$line_of_text[1] ."<BR>";
$obj = new Sender("myservername","myport","username","password","$sender", "$msg",
"$line_of_text","2","1");
$obj->Submit();
echo "<div class='success'>Successfully sent your message to " . $line_of_text[1] . " Thank
You.</div>";
}
fclose( $file_handle );
但我收到以下错误消息:
Notice: Array to string conversion in D:\Software Installed\xampp\htdocs\evan\toplevel
\bulksms.php on line 108
Notice: Undefined offset: 1 in D:\Software Installed\xampp\htdocs\evan\toplevel\bulksms.php on
line 106
Notice: Undefined offset: 1 in D:\Software Installed\xampp\htdocs\evan\toplevel\bulksms.php on
line 107
我的最终目标是,用户可以通过上传所有联系号码退出的 .txt 文件来发送短信。因此,一旦提交表格,则必须将短信发送到这些联系号码。
- 你们能告诉我为什么我会收到错误消息吗?
- 它显示 2 成功确认,但我希望它必须显示 1 成功确认。
谢谢。