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 文件内存中的数据结构发送到另一个接受 POST 响应来处理的 PHP 文件中?
例如,我可以做一个var_dump($datastructure),它会打印我所有的东西。我实际上可以以某种方式将此对象作为文本发送吗?说将此编码为文本或 JSON 对象?
var_dump($datastructure)
完成此操作后,我可以通过 POST 将其传递到另一个 PHP 脚本以将其解码为一个对象,这样我就可以用它来做事了?