Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否还有其他方法可以将某些内容从 PHP 发送到 jquery
echo $data_to_jquery;
这些是从 php 脚本生成输出的几种方法
对于文本数据:
echo或替代<?= ... ?>语法
<?= ... ?>
打印和打印
外面的任何东西<?php ... ?>都是输出
<?php ... ?>
打开文件句柄上的fpassthru
fwrite,fputs,fputcsv,fprintf到 php://stdout 或 php://output 上的打开句柄
对于图像
imagejpeg imagepng imagegif imagewbmp
我可能错过了几个。