Код: Выделить всё
$posts = array(
"message" => 'this is a test message'
);
foreach ($posts as $post) {
echo $post['message'];
}
Подробнее здесь: https://stackoverflow.com/questions/115 ... flat-array
Код: Выделить всё
$posts = array(
"message" => 'this is a test message'
);
foreach ($posts as $post) {
echo $post['message'];
}