将 PhP 字符串传递到 Wordpress 中的 Mootools
我有一个在 php 中创建字符串的 foreach 循环,我无法将字符串值传递给 wordpress 中的 mootools (我正在集成 MooTool 函数) :::
我需要替换“硬编码”图像 URL 中的new Array()(如下),其中包含从我的 php 字符串创建的变量,例如。 new Array( $myimageurl ) :::
我已经从 php 字符串创建了一个 var 甚至尝试了 json_encode ,但没有运气 :::
window.addEvent("domready", function(){
var counter = 0;
var images = new Array('http://localhost/square/wp-content/uploads/2011/10/test-foo/foo.jpg','http://localhost/square/wp-content/uploads/2011/10/test-foo/foo1.jpg');
I have a foreach loop that creates a string in php , I'm unable to pass the string value to mootools in wordpress (I'm integrating a MooTool function ) :::
I need to substitute the "hard coded" image URL's in the new Array() (below) with a variable created from my php string eg. new Array( $myimageurl ) :::
I've created a var from the php string even tried json_encode , with no luck :::
window.addEvent("domready", function(){
var counter = 0;
var images = new Array('http://localhost/square/wp-content/uploads/2011/10/test-foo/foo.jpg','http://localhost/square/wp-content/uploads/2011/10/test-foo/foo1.jpg');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
呃,为什么不只是:
编辑
由于您在注释中暗示您的文件源是逗号分隔的,那么请执行以下操作:
其中数组可以是任何长度的任何内容,从任何地方读取。它将产生一个如下所示的数组文字:
nb:刚刚注意到@Marc B已经提到了json_encode。抱歉,会删除
er, why not just:
EDIT
Since you implied in a comment your files source is comma separated, then do this instead:
where the array could be anything of any length, read from wherever. it will result in an array literal looking like so:
nb: just noticed @Marc B has already mentioned json_encode. sorry, will delete
尝试:
其他方式:
try:
Other way: