PHP 中的 URL 查询字符串变量计数

发布于 2024-11-25 20:14:22 字数 653 浏览 2 评论 0原文

我正在开发一个会计软件项目。我想计算 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南冥有猫 2024-12-02 20:14:22
$rows = explode("&", $_SERVER['QUERY_STRING']);

这将为您提供一个数组:

accname1=1
DrAmount1=1
CrAmount1=1

因此您可以获得 count($rows) 的总数。

这是你的意思吗?

$rows = explode("&", $_SERVER['QUERY_STRING']);

This will give you an array of:

accname1=1
DrAmount1=1
CrAmount1=1

So you could get the total as count($rows).

Is this what you meant?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文