我的要求是读取 php 文件的内容并在前端显示内容。为此,我使用了
$section = file_get_contents('test.php');
var_dump($section);
?>
但它正在打印值,经过一些字符后,它只是打印......不是完整的内容。我试图通过 echo 和 print_r 方法打印,但无论如何我都没有得到完整的内容。
我的 app.php 是这样的:
<?php
$data = array(
array('id' => 1, 'first' => "abc", 'last' => 'def', 'email' => 'abc@def.com'),
array('id' => 2, 'first' => "ghi", 'last' => 'jkl', 'email' => 'abc@def.com'),
array('id' => 3, 'first' => "mno", 'last' => 'pqr', 'email' => 'abc@def.com'),
array('id' => 4, 'first' => "stu", 'last' => 'vwx', 'email' => 'abc@def.com'),
array('id' => 5, 'first' => "Y", 'last' => 'Z', 'email' => 'abc@def.com'),
);
echo json_encode(array(
'success' => true,
'message' => 'loading data',
'data' => $data
));
?>