如何将PHP数组转换为Javascript

如何将PHP数组转换为Javascript

本文介绍了如何将PHP数组转换为Javascript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我正在调用一个ajax调用,我在其中获取Active Directory中的名称列表。我得到的是一个名单列表,我可以将它存储在数组中。



ajax调用将返回该数组,它应该成为javascript数组,以便我可以将其作为自动完成的源作为参数传递。



我听说过使用json_encode将php数组转换为javascript的完成。



请咨询。



谢谢。

Hello,
I am calling an ajax call in which I am fetching the list of name in the Active Directory. What i get is a list of names which I can store it in the array.

The ajax call will return that array and it should become the javascript array so that I can pass that as a source for the autocomplete as a parameter.

I have heard somewhere that it is done using json_encode to convert php array to javascript one.

Please advice.

Thanks.

推荐答案


<?php



这篇关于如何将PHP数组转换为Javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 05:52