PHP 投稿処理

<?php

$post = [];
$posts[0] = [‘text’ => ‘hello’, ‘liles’ => 0];
$posts[1] = [‘text’ => ‘hello again’, ‘liles’ => 0];

//print_r($posts);

function show($post)
{
printf(‘%s (%d)’ . PHP_EOL, $post[‘text’], $post[‘liles’]);
}

show($posts[0]);
show($posts[1]);

投稿者: chosuke

趣味はゲームやアニメや漫画などです

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です