jQuery 和 PHP,使用数组

发布于 2024-09-30 17:35:15 字数 490 浏览 5 评论 0原文

我想将缩略图的顺序作为数组发布到文本文件中,以便稍后由一些 PHP 读取和回显。 PHP 中当前的 file() 函数会查找字符返回来指示每个数组条目。

jQuery:

var order = $('#thumbList').sortable('toArray');

PHP:

$order=file('order.txt');
 foreach ($order as $value) {
    echo "<img src='gal/img/sml/$value' />";
}

我想知道保存和读取数组的最佳方法是什么在 jQueryPHP 之间,这样我就不必为每种语言重新格式化数组。

I'd like to post the order of my thumbnails to a text file as an array to be read and echoed by some PHP later. The current file() function in PHP looks for a character return to signal each array entry.

jQuery:

var order = $('#thumbList').sortable('toArray');

PHP:

$order=file('order.txt');
 foreach ($order as $value) {
    echo "<img src='gal/img/sml/$value' />";
}

I'm wondering what the best way would be to go about saving and reading an array between jQuery and PHP so that I wouldn't have to reformat the array for each language.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烦人精 2024-10-07 17:35:15

你能将它序列化为 JSON 吗? PHP 和 Javascript(仅带有附加库的 JS)都能够处理它。

Could you serialize it to JSON? PHP and Javascript (JS only with an additional library) are both able to handle it.

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