私の要件は、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
));
?>