http://www.shedlimited.debrucellc.com
该站点允许用户通过 PHP 脚本 (ajaxupload.php) 上传图像,该脚本存储在 php 脚本内部的 $uploaded_img 中。我想将我新存储的图像的 PATH 传递给一个 JS 文件,而我发现的唯一方法是将值写入文本文件,这非常过分
file_put_contents("testFile.txt", "");
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = $upload_image;
fwrite($fh, $stringData);
$stringData = "\n";
fwrite($fh, $stringData);
fclose($fh);
同时,我运行了一个外部 .js 文件,它加载了我的 html5 Canvas 等,
我在外部 .js 文件中设置了一个全局变量 sourcer ,我可以通过从我在 php 脚本中写入 url 的文件中读取 URL 来访问和更新 index.php :
jQuery.get('scripts/testFile.txt', function(data) {
sourcer = data;
});
有什么方法可以将 URL 值传递给 sourcer 而无需手动将其插入文本文件中?