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.
我有一个桌面应用程序,我想在其中使用 IO 类读取 php 文件。然后在我的 java 类上解析 php 变量/数组。java中是否有使用Pattern和Matcher类提取php变量的模式?
下面是带有 temp.php 的示例 php 代码
<?php $temp = array("test"=>'test', 'test44'=>"TEST44");?>
我想在 java 中读取临时数组变量,而不是从正在运行的应用程序中读取源代码?是否有任何可用的 API 或任何其他方式?
为什么需要从 Java 解析 PHP 变量?你不能改用 XML 或 JSON 吗?