예제 #1
0
파일: list.php 프로젝트: leloulight/didapi
<?php

include_once '../../globals.php';
$allPosts = PostRepository::FindAll();
$formattedPosts = array();
foreach ($allPosts as $post) {
    $formattedPosts[] = $post->toArray();
}
echo json_encode($formattedPosts);