PHP 中的 URL 查询字符串变量计数
我正在开发一个会计软件项目。我想计算 URL 查询字符串中的变量集。例如
http://localhost/xampp/khata2/test/tableaddrow_nw.php?accname1=1&DrAmount1=1&CrAmount1=1&accname2=2+was2&DrAmount2=2& ;CrAmount2=2&accname3=3+was3& DrAmount3=3&CrAmount3=3&accname4=4+was4&DrAmount4=4&CrAmount4=4&accname5=5+was5&DrAmount5=5&CrAmount5=5&accname6=6+was6&DrAmount6=6&CrAmount6= 6
查询字符串 accname1、DrAmount1、CrAmount1 .... accname6、DrAmount6、CrAmount6 等中有一组类型的行,这些行是在用户在行中输入数据时动态生成的。 我如何找出查询字符串中有多少行(数据集)?
任何帮助表示赞赏。
I am developing an accounting software as project. I want to count sets of variables in URL query string. eg
http://localhost/xampp/khata2/test/tableaddrow_nw.php?accname1=1&DrAmount1=1&CrAmount1=1&accname2=2+was2&DrAmount2=2&CrAmount2=2&accname3=3+was3&DrAmount3=3&CrAmount3=3&accname4=4+was4&DrAmount4=4&CrAmount4=4&accname5=5+was5&DrAmount5=5&CrAmount5=5&accname6=6+was6&DrAmount6=6&CrAmount6=6
There is a set of kind of rows in a query string accname1,DrAmount1,CrAmount1 .... accname6,DrAmount6,CrAmount6 so on which is generated dynamicaly as user inputs data in rows.
how can i find out ho many rows are (set of data) are in query string ?
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将为您提供一个数组:
因此您可以获得
count($rows)
的总数。这是你的意思吗?
This will give you an array of:
So you could get the total as
count($rows)
.Is this what you meant?