我在eclipse pdt 中创建了一个php 项目。当我尝试调用 java_encode 时,我收到“调用未定义函数 json_encode()”错误。PDT 的 php 核心 api 中的其他函数不这样做。
这是一个代码
$arr = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5);
echo json_encode($arr);
第二行导致错误。我需要包含还是需要?我是使用 json 和 eclipse PDT 的新手。需要帮助。谢谢!