jQuery 和 PHP,使用数组
我想将缩略图的顺序作为数组发布到文本文件中,以便稍后由一些 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' />";
}
我想知道保存和读取数组的最佳方法是什么在 jQuery 和 PHP 之间,这样我就不必为每种语言重新格式化数组。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能将它序列化为 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.