在 php 中使用 csv
我有一个要求,我需要使用 csv 文件来处理我的登录表单逻辑。 csv 文件中的“A”列包含所有用户名,“T”列包含网站名称。现在,用户通过输入他们的用户名来登录,根据情况,我必须将他们重定向到 T 列中输入的网站。我将如何使用 php 来实现这一点?
A T
ABC www.test.com
DEF www.test1.com
I have a requirement where I need to work my login form logic using a csv file. 'A' column in csv file has all Usernames and 'T' column has website names. Now the user logs in by typing in their usernames, and depending on that I have to redirect them to the website entered in column T. How will I use php to accompalish this?
A T
ABC www.test.com
DEF www.test1.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 fgetcsv() 来读取一行一个 csv 文件。看一下下面的代码,它应该涵盖您的情况:
编辑:代码已修复。无法工作,因为 fgetcsv 需要读取文件句柄。
You need to use fgetcsv() in order to read a line from a csv file. Have a look at the code below, it should cover your case:
Edit: Code fixed. Wasn't working as fgetcsv requires a file handle to read from.
应该创建一个用户及其应该访问的站点的关联数组。
Should create an associative array of users and the sites they should go to.