所以我有这个
$result = mysqli_query($con,"SELECT ID, category, tag, title, titleImage, thumbImage, pubDate, shortCopy, fullCopy FROM articles WHERE ID=$IDparam");
while($row = mysqli_fetch_assoc($result))
{
$output[]=$row;
}
echo(json_encode($output));
我希望在 shortCopy 和 fullCopy 上使用 base64_decode() 并且仍然获得相同的 json 输出。我试过在最后的回声之前添加这个......
$output['shortCopy']=base64_decode();
编辑:
我还想输出所有的 SELECTed 字段,只是想通过 base64_decode() 运行 shortCopy 和 fullCopy。
提前致谢,
马赫